diff options
| author | Sam Varshavchik | 2022-05-22 23:52:28 -0400 | 
|---|---|---|
| committer | Sam Varshavchik | 2022-05-22 23:52:31 -0400 | 
| commit | 83e37efc8ed785cd095eb585ff747e5702ec49b3 (patch) | |
| tree | 15aed6da6214e9a03d91be1754cd351175349945 /imap/pop3dserver.c | |
| parent | 1ce81fa6af52651628a0bffcd8b15fdb459901a5 (diff) | |
| download | courier-libs-83e37efc8ed785cd095eb585ff747e5702ec49b3.tar.bz2 | |
gcc 12, autotool updates, sqwebmail fixes.
Diffstat (limited to 'imap/pop3dserver.c')
| -rw-r--r-- | imap/pop3dserver.c | 15 | 
1 files changed, 3 insertions, 12 deletions
| diff --git a/imap/pop3dserver.c b/imap/pop3dserver.c index 82a1ec0..3ba46ce 100644 --- a/imap/pop3dserver.c +++ b/imap/pop3dserver.c @@ -28,15 +28,9 @@  #if	HAVE_SYS_STAT_H  #include	<sys/stat.h>  #endif -#if TIME_WITH_SYS_TIME -#include <sys/time.h> -#include <time.h> -#else +#include	<time.h>  #if HAVE_SYS_TIME_H -#include <sys/time.h> -#else -#include <time.h> -#endif +#include	<sys/time.h>  #endif  #include	<stdio.h>  #include	<stdlib.h> @@ -958,13 +952,10 @@ static void acctout(const char *disc)  	free(p);  } -static RETSIGTYPE bye(int signum) +static void bye(int signum)  {  	acctout("INFO: TIMEOUT");  	exit(0); -#if	RETSIGTYPE != void -	return (0); -#endif  }  static void loop() | 
