diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-12-29 16:21:04 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-12-29 22:45:15 +0100 |
commit | d82e9b2785c0580f9a3bc09f3d3194ccaf7c50ac (patch) | |
tree | 68fee89706dbfc5045572169b89eb4ef68b80851 /libftpconn | |
parent | 36918d77a40273ae93c250a4c0699659f9f6c33b (diff) | |
download | hurd-d82e9b2785c0580f9a3bc09f3d3194ccaf7c50ac.tar.gz hurd-d82e9b2785c0580f9a3bc09f3d3194ccaf7c50ac.tar.bz2 hurd-d82e9b2785c0580f9a3bc09f3d3194ccaf7c50ac.zip |
libftpconn: add out >= 2 condition to make GCC happy
Message-ID: <20231229212105.858759-10-flaviocruz@gmail.com>
Diffstat (limited to 'libftpconn')
-rw-r--r-- | libftpconn/cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libftpconn/cmd.c b/libftpconn/cmd.c index 9916d03b..4b4c6fae 100644 --- a/libftpconn/cmd.c +++ b/libftpconn/cmd.c @@ -99,7 +99,7 @@ ftp_conn_cmd (struct ftp_conn *conn, const char *cmd, const char *arg, snprintf (buf, sizeof buf, arg ? "%s %s\r\n" : "%s\r\n", cmd, arg); err = _write (conn->control, buf, out); - if (!err && conn->hooks && conn->hooks->cntl_debug) + if (!err && conn->hooks && conn->hooks->cntl_debug && out >= 2) { buf[out - 2] = '\0'; /* Stomp the CR & NL. */ (* conn->hooks->cntl_debug) (conn, FTP_CONN_CNTL_DEBUG_CMD, buf); |