diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-11-09 16:31:09 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-11-09 16:31:09 +0100 |
commit | 33a6469359de31762a95e2137f51c05cc5e63284 (patch) | |
tree | 7c10853cda8f4aad69c221f065571944506cceed /src/plugins/xfer/xfer.c | |
parent | 58f001931be1c7362a5c07b33bfa89fd1545c254 (diff) | |
download | weechat-33a6469359de31762a95e2137f51c05cc5e63284.zip |
xfer: fix comments
Diffstat (limited to 'src/plugins/xfer/xfer.c')
-rw-r--r-- | src/plugins/xfer/xfer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/xfer/xfer.c b/src/plugins/xfer/xfer.c index cee5164d5..9cc33daed 100644 --- a/src/plugins/xfer/xfer.c +++ b/src/plugins/xfer/xfer.c @@ -1188,7 +1188,7 @@ xfer_add_cb (void *data, const char *signal, const char *type_data, } else { - /* No own_ip, so bind_addr's family comes from irc connection */ + /* no own_ip, so bind_addr's family comes from irc connection */ str_address = weechat_infolist_string (infolist, "local_address"); length = sizeof (addr); if (!xfer_resolve_addr (str_address, NULL, @@ -1200,7 +1200,7 @@ xfer_add_cb (void *data, const char *signal, const char *type_data, bind_addr.ss_family = addr.ss_family; } - /* Determine bind wildcard address */ + /* determine bind wildcard address */ if (bind_addr.ss_family == AF_INET) { ((struct sockaddr_in*)&bind_addr)->sin_addr.s_addr = INADDR_ANY; |