diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2005-09-25 10:27:31 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2005-09-25 10:27:31 +0000 |
commit | 63691d7a0f51ca09df58b30d4e62a173b70c4c17 (patch) | |
tree | 8bc2b1b31ffce1045bb8ae8860bcc0c339d6ccdb /transact.c | |
parent | 9edd6d0a0ad275cc7a893bb27a5fc2143dcbc2d0 (diff) | |
download | fetchmail-63691d7a0f51ca09df58b30d4e62a173b70c4c17.tar.gz fetchmail-63691d7a0f51ca09df58b30d4e62a173b70c4c17.tar.bz2 fetchmail-63691d7a0f51ca09df58b30d4e62a173b70c4c17.zip |
Rename isafile -> is_a_file, isidletimout -> is_idletimeout
to keep clear of ctype.h namespace.
svn path=/trunk/; revision=4322
Diffstat (limited to 'transact.c')
-rw-r--r-- | transact.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); |