From 178fb764cf7835f3e0090b1a970742678333f8af Mon Sep 17 00:00:00 2001 From: Sunil Nimmagadda Date: Mon, 7 Apr 2014 12:27:40 +0500 Subject: Fix clang warnings. offset is always long. --- maildir.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'maildir.c') diff --git a/maildir.c b/maildir.c index 1b11410..a0bca6a 100644 --- a/maildir.c +++ b/maildir.c @@ -30,7 +30,7 @@ #include "pop3d.h" static int init(struct mdrop *, size_t *, size_t *); -static int retr(struct mdrop *, unsigned int, size_t *, size_t *); +static int retr(struct mdrop *, unsigned int, size_t *, long *); static int update(struct mdrop *); static int new_to_cur(struct mdrop *); static int msgcmp(struct msg *, struct msg *); @@ -51,7 +51,7 @@ init(struct mdrop *m, size_t *nmsgs, size_t *sz) { SHA1_CTX ctx; struct stat sb; - char buf[MAXBSIZE]; + u_char buf[MAXBSIZE]; DIR *dirp; struct dirent *dp; struct msg *msg; @@ -170,7 +170,7 @@ new_to_cur(struct mdrop *m) } static int -retr(struct mdrop *m, unsigned int idx, size_t *nlines, size_t *offset) +retr(struct mdrop *m, unsigned int idx, size_t *nlines, long *offset) { char buf[MAXPATHLEN]; int fd, r; -- cgit v1.2.3