diff options
Diffstat (limited to 'lib/libalias/alias_ftp.c')
-rw-r--r-- | lib/libalias/alias_ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalias/alias_ftp.c b/lib/libalias/alias_ftp.c index eba434b..4d488e2 100644 --- a/lib/libalias/alias_ftp.c +++ b/lib/libalias/alias_ftp.c @@ -131,7 +131,7 @@ int maxpacketsize /* The maximum size this packet can grow to (including header * properly terminated with CRLF. */ pflags = GetProtocolFlags(link); - if (dlen <= MAX_MESSAGE_SIZE && (pflags & WAIT_CRLF)) { + if (dlen <= MAX_MESSAGE_SIZE && !(pflags & WAIT_CRLF)) { ftp_message_type = FTP_UNKNOWN_MESSAGE; if (ntohs(tc->th_dport) == FTP_CONTROL_PORT_NUMBER) { |