diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 12:06:04 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-03-14 12:06:04 +0000 |
commit | d57b00768a8fa44d1e1c5f758440edabfa488baf (patch) | |
tree | dcdc77e502b4d251f05bc4f49f8ececebeb69df0 /fetchmail.h | |
parent | cd5b84b42695f3a653df1e6692cf1bf5268a50f7 (diff) | |
download | fetchmail-d57b00768a8fa44d1e1c5f758440edabfa488baf.tar.gz fetchmail-d57b00768a8fa44d1e1c5f758440edabfa488baf.tar.bz2 fetchmail-d57b00768a8fa44d1e1c5f758440edabfa488baf.zip |
Fix more compiler warnings.
svn path=/branches/BRANCH_6-3/; revision=4736
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fetchmail.h b/fetchmail.h index 3deeb63e..a687372e 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -216,7 +216,7 @@ struct method /* describe methods for protocol state machine */ /* fetch FROM headera given message */ int (*fetch_body)(int, struct query *, int, int *); /* fetch a given message */ - int (*trail)(int, struct query *, int, const char *); + int (*trail)(int, struct query *, const char *); /* eat trailer of a message */ int (*delete_msg)(int, struct query *, int); /* delete method */ @@ -548,7 +548,7 @@ int stuffline(struct query *, char *); int open_sink(struct query*, struct msgblk *, int*, int*); void release_sink(struct query *); int close_sink(struct query *, struct msgblk *, flag); -int open_warning_by_mail(struct query *, struct msgblk *); +int open_warning_by_mail(struct query *); #if defined(HAVE_STDARG_H) void stuff_warning(const char *, struct query *, const char *, ... ) __attribute__ ((format (printf, 3, 4))) @@ -650,7 +650,7 @@ typedef RETSIGTYPE (*SIGHANDLERTYPE) (int); void deal_with_sigchld(void); RETSIGTYPE null_signal_handler(int sig); SIGHANDLERTYPE set_signal_handler(int sig, SIGHANDLERTYPE handler); -int daemonize(const char *, void (*)(int)); +int daemonize(const char *); char *fm_getpassword(char *); void escapes(const char *, char *); char *visbuf(const char *); |