* socket_perror() "bug"?
@ 2014-03-30 19:32 Thiago Farina
2014-03-31 20:50 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Thiago Farina @ 2014-03-30 19:32 UTC (permalink / raw)
To: Git Mailing List
Hi,
In imap-send.c:socket_perror() we pass |func| as a parameter, which I
think it is the name of the function that "called" socket_perror, or
the name of the function which generated an error.
But at line 184 and 187 it always assume it was SSL_connect.
Should we instead call perror() and ssl_socket_error() with func?
--
Thiago Farina
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: socket_perror() "bug"?
2014-03-30 19:32 socket_perror() "bug"? Thiago Farina
@ 2014-03-31 20:50 ` Junio C Hamano
2014-04-02 23:05 ` Thiago Farina
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2014-03-31 20:50 UTC (permalink / raw)
To: Thiago Farina; +Cc: Git Mailing List
Thiago Farina <tfransosi@gmail.com> writes:
> In imap-send.c:socket_perror() we pass |func| as a parameter, which I
> think it is the name of the function that "called" socket_perror, or
> the name of the function which generated an error.
>
> But at line 184 and 187 it always assume it was SSL_connect.
>
> Should we instead call perror() and ssl_socket_error() with func?
Looks that way to me, at least from a cursory look.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: socket_perror() "bug"?
2014-03-31 20:50 ` Junio C Hamano
@ 2014-04-02 23:05 ` Thiago Farina
2014-04-03 19:01 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Thiago Farina @ 2014-04-02 23:05 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Git Mailing List
On Mon, Mar 31, 2014 at 5:50 PM, Junio C Hamano <gitster@pobox.com> wrote:
> Thiago Farina <tfransosi@gmail.com> writes:
>
>> In imap-send.c:socket_perror() we pass |func| as a parameter, which I
>> think it is the name of the function that "called" socket_perror, or
>> the name of the function which generated an error.
>>
>> But at line 184 and 187 it always assume it was SSL_connect.
>>
>> Should we instead call perror() and ssl_socket_error() with func?
>
> Looks that way to me, at least from a cursory look.
Would you accept such a patch?
diff --git a/imap-send.c b/imap-send.c
index 0bc6f7f..bb04768 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -181,10 +181,10 @@ static void socket_perror(const char *func,
struct imap_socket *sock, int ret)
case SSL_ERROR_NONE:
break;
case SSL_ERROR_SYSCALL:
- perror("SSL_connect");
+ perror(func);
break;
default:
- ssl_socket_perror("SSL_connect");
+ ssl_socket_perror(func);
break;
}
} else
--
Thiago Farina
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: socket_perror() "bug"?
2014-04-02 23:05 ` Thiago Farina
@ 2014-04-03 19:01 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2014-04-03 19:01 UTC (permalink / raw)
To: Thiago Farina; +Cc: Git Mailing List
Thiago Farina <tfransosi@gmail.com> writes:
> On Mon, Mar 31, 2014 at 5:50 PM, Junio C Hamano <gitster@pobox.com> wrote:
>> Thiago Farina <tfransosi@gmail.com> writes:
>>
>>> In imap-send.c:socket_perror() we pass |func| as a parameter, which I
>>> think it is the name of the function that "called" socket_perror, or
>>> the name of the function which generated an error.
>>>
>>> But at line 184 and 187 it always assume it was SSL_connect.
>>>
>>> Should we instead call perror() and ssl_socket_error() with func?
>>
>> Looks that way to me, at least from a cursory look.
> Would you accept such a patch?
This back-and-forth makes me wonder what is going on. Why not send
a full patch with a proper proposed commit log message to the list
and see what happens?
> diff --git a/imap-send.c b/imap-send.c
> index 0bc6f7f..bb04768 100644
> --- a/imap-send.c
> +++ b/imap-send.c
> @@ -181,10 +181,10 @@ static void socket_perror(const char *func,
> struct imap_socket *sock, int ret)
> case SSL_ERROR_NONE:
> break;
> case SSL_ERROR_SYSCALL:
> - perror("SSL_connect");
> + perror(func);
> break;
> default:
> - ssl_socket_perror("SSL_connect");
> + ssl_socket_perror(func);
> break;
> }
> } else
>
> --
> Thiago Farina
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-04-03 19:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-30 19:32 socket_perror() "bug"? Thiago Farina
2014-03-31 20:50 ` Junio C Hamano
2014-04-02 23:05 ` Thiago Farina
2014-04-03 19:01 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).