aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-06-28 11:04:34 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-06-28 11:04:34 +0000
commit13f1b3693b5f5db62d91a03625eb7fd8aef201da (patch)
treefbd8e27de5b934e160bf008266e484ff86b784b8 /fetchmail.h
parent1b0445caadad8c59d0fc9ead943d4aa3f0f59275 (diff)
downloadfetchmail-13f1b3693b5f5db62d91a03625eb7fd8aef201da.tar.gz
fetchmail-13f1b3693b5f5db62d91a03625eb7fd8aef201da.tar.bz2
fetchmail-13f1b3693b5f5db62d91a03625eb7fd8aef201da.zip
Try to beat a sign-extension bug.
svn path=/trunk/; revision=2912
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 4d4022be..1603f4e6 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -432,8 +432,8 @@ void stuff_warning();
void close_warning_by_mail(struct query *, struct msgblk *);
/* rfc822.c: RFC822 header parsing */
-char *reply_hack(char *, const char *);
-char *nxtaddr(const char *);
+unsigned char *reply_hack(unsigned char *, const unsigned char *);
+unsigned char *nxtaddr(const unsigned char *);
/* uid.c: UID support */
void initialize_saved_lists(struct query *, const char *);