diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-03-25 19:56:50 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-03-25 19:56:50 +0100 |
commit | 93e6b1cb7c677de709a23dca1bba01f032d9b318 (patch) | |
tree | 1de8a5daed0942179d2fe89a93dd154400c3115e | |
parent | 5e1859014baf5a70331cf66018039ee1dc5cb834 (diff) |
PROT_CLOSEACTION should not include TFTP
TFTP is not a protocol that uses close actions so it should
not be set in that bitmask!
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index f6b8de955..ad172d66a 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -683,7 +683,7 @@ struct connectdata { #define PROT_SSL (1<<25) /* protocol requires SSL */ /* these ones need action before socket close */ -#define PROT_CLOSEACTION (PROT_FTP | PROT_TFTP | PROT_IMAP | PROT_POP3) +#define PROT_CLOSEACTION (PROT_FTP | PROT_IMAP | PROT_POP3) #define PROT_DUALCHANNEL PROT_FTP /* these protocols use two connections */ /* 'dns_entry' is the particular host we use. This points to an entry in the |