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 /driver.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 'driver.c')
-rw-r--r-- | driver.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |