diff options
-rw-r--r-- | daemon.c | 2 | ||||
-rw-r--r-- | driver.c | 6 | ||||
-rw-r--r-- | fetchmail.h | 4 | ||||
-rw-r--r-- | transact.c | 8 |
4 files changed, 10 insertions, 10 deletions
@@ -259,7 +259,7 @@ nottyDetach: return(0); } -flag isafile(int fd) +flag is_a_file(int fd) /* is the given fd attached to a file? (used to control logging) */ { struct stat stbuf; @@ -75,7 +75,7 @@ static volatile int idletimeout = 0; /* timeout occured in idle stage? */ static jmp_buf restart; -int isidletimeout(void) +int is_idletimeout(void) /* last timeout occured in idle stage? */ { return idletimeout; @@ -640,7 +640,7 @@ static int fetch_messages(int mailserver_socket, struct query *ctl, /* tell server we got it OK and resynchronize */ if (separatefetchbody && ctl->server.base_protocol->trail) { - if (outlevel >= O_VERBOSE && !isafile(1)) + if (outlevel >= O_VERBOSE && !is_a_file(1)) { fputc('\n', stdout); fflush(stdout); @@ -698,7 +698,7 @@ static int fetch_messages(int mailserver_socket, struct query *ctl, /* tell server we got it OK and resynchronize */ if (ctl->server.base_protocol->trail) { - if (outlevel >= O_VERBOSE && !isafile(1)) + if (outlevel >= O_VERBOSE && !is_a_file(1)) { fputc('\n', stdout); fflush(stdout); diff --git a/fetchmail.h b/fetchmail.h index bd992827..b3868592 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -465,7 +465,7 @@ void report_at_line (); /* driver.c -- main driver loop */ void set_timeout(int); -int isidletimeout(void); +int is_idletimeout(void); void resetidletimeout(void); int do_protocol(struct query *, const struct method *); @@ -648,7 +648,7 @@ void dump_config(struct runctl *runp, struct query *querylist); int is_host_alias(const char *, struct query *); char *host_fqdn(void); char *rfc822timestamp(void); -flag isafile(int); +flag is_a_file(int); char *rfc2047e(const char*, const char *); void yyerror(const char *); @@ -10,7 +10,7 @@ #include "config.h" #include <stdio.h> #include <string.h> -#include <ctype.h> /* isspace() */ +#include <ctype.h> #ifdef HAVE_MEMORY_H #include <memory.h> #endif /* HAVE_MEMORY_H */ @@ -1207,7 +1207,7 @@ int readheaders(int sock, free_str_list(&msgblk.recipients); return(PS_IOERR); } - else if ((run.poll_interval == 0 || nodetach) && outlevel >= O_VERBOSE && !isafile(1) && !run.use_syslog) + else if ((run.poll_interval == 0 || nodetach) && outlevel >= O_VERBOSE && !is_a_file(1) && !run.use_syslog) fputc('#', stdout); /* write error notifications */ @@ -1377,7 +1377,7 @@ int readbody(int sock, struct query *ctl, flag forward, int len) release_sink(ctl); return(PS_IOERR); } - else if (outlevel >= O_VERBOSE && !isafile(1) && !run.use_syslog) + else if (outlevel >= O_VERBOSE && !is_a_file(1) && !run.use_syslog) { fputc('*', stdout); fflush(stdout); @@ -1464,7 +1464,7 @@ int size; /* length of buffer */ { set_timeout(0); phase = oldphase; - if(isidletimeout()) + if(is_idletimeout()) { resetidletimeout(); return(PS_IDLETIMEOUT); |