summaryrefslogtreecommitdiff
path: root/src/irc/irc-dcc.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2005-10-31 12:40:34 +0000
committerSebastien Helleu <flashcode@flashtux.org>2005-10-31 12:40:34 +0000
commit4ea734a376efb504a1e6276f42ae41faaf7c5fe8 (patch)
tree08a06a17564b8feed4d7ba48a0d820823205446d /src/irc/irc-dcc.c
parent3369a00959a4bc037fc51187a05a8c836919c07c (diff)
downloadweechat-4ea734a376efb504a1e6276f42ae41faaf7c5fe8.zip
Fixed type used for htonl function (replaced u_int32_t by uint32_t, now OK under
MacOS)
Diffstat (limited to 'src/irc/irc-dcc.c')
-rw-r--r--src/irc/irc-dcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/irc-dcc.c b/src/irc/irc-dcc.c
index 0512375af..739fe93c1 100644
--- a/src/irc/irc-dcc.c
+++ b/src/irc/irc-dcc.c
@@ -1172,7 +1172,7 @@ dcc_handle ()
t_irc_dcc *ptr_dcc;
int num_read, num_sent;
static char buffer[102400];
- u_int32_t pos;
+ uint32_t pos;
fd_set read_fd;
static struct timeval timeout;
int sock;