diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2011-11-18 15:55:09 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-11-18 16:04:52 +0100 |
commit | f64812ca63d5dbcd8b255cc1102fcc321997eceb (patch) | |
tree | c94c54b068aac290f362acca86910e9b0f8f26e5 /lib/ssh.h | |
parent | 10ecdf5078f1f096c3b2d247ef08d35b8fa96f4a (diff) | |
download | curl-f64812ca63d5dbcd8b255cc1102fcc321997eceb.tar.gz |
SFTP: support '*' prefix for quote operations
prefixing a command with '*' means it is allowed to fail without
aborting the chain actions
Diffstat (limited to 'lib/ssh.h')
-rw-r--r-- | lib/ssh.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -115,6 +115,7 @@ struct ssh_conn { char *quote_path1; /* two generic pointers for the QUOTE stuff */ char *quote_path2; LIBSSH2_SFTP_ATTRIBUTES quote_attrs; /* used by the SFTP_QUOTE state */ + bool acceptfail; /* accept file in SFTP_QUOTE state */ char *homedir; /* when doing SFTP we figure out home dir in the connect phase */ |