Commit 124a161f 124a161fb9164a900724ee7d2e8d882f053e7229 by Jeff Bailey

64 bit portability fix

1 parent 9c0ae79f
1 2001-11-10 Jeff Bailey <jbailey@outpost.dnsalias.org>
2
3 * pop3d/pop3d.c: Change timeout to unsigned int from size_t.
4 Thanks to James Troup <james@nocrew.org>
5
1 2001-11-05 Alain Magloire 6 2001-11-05 Alain Magloire
2 7
3 * mailbox/mutil.c (mu_parse_imap_date_time): This one is so 8 * mailbox/mutil.c (mu_parse_imap_date_time): This one is so
......
...@@ -10,3 +10,5 @@ Frank Belew <frb@wiw.org> ...@@ -10,3 +10,5 @@ Frank Belew <frb@wiw.org>
10 Vesselin Atanasov <vesselin@bgnet.bg> 10 Vesselin Atanasov <vesselin@bgnet.bg>
11 Sergey Poznyakoff <gray@Mirddin.farlep.net> 11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
12 Jim Hull <imaginos@imaginos.net> 12 Jim Hull <imaginos@imaginos.net>
13 James Troup <james@nocrew.org>
14
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 #endif 22 #endif
23 23
24 mailbox_t mbox; 24 mailbox_t mbox;
25 size_t timeout; 25 unsigned int timeout;
26 int state; 26 int state;
27 char *username; 27 char *username;
28 FILE *ifile; 28 FILE *ifile;
......