bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH hurd 10/11] libftpconn: add out >= 2 condition to make GCC ha


From: Samuel Thibault
Subject: Re: [PATCH hurd 10/11] libftpconn: add out >= 2 condition to make GCC happy
Date: Fri, 29 Dec 2023 22:45:21 +0100
User-agent: NeoMutt/20170609 (1.8.3)

Applied, thanks!

Flavio Cruz, le ven. 29 déc. 2023 16:21:04 -0500, a ecrit:
> ---
>  libftpconn/cmd.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/libftpconn/cmd.c b/libftpconn/cmd.c
> index 9916d03..4b4c6fa 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);
> -- 
> 2.39.2
> 
> 

-- 
Samuel
---
Pour une évaluation indépendante, transparente et rigoureuse !
Je soutiens la Commission d'Évaluation de l'Inria.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]