From: David Levine Date: Mon, 9 Jan 2012 20:08:38 +0000 (-0600) Subject: Removed a remaining RETSIGTYPE. Also change a few locals from int to unsigned to... X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=a2469f5ecbca3a179251ac9b777b561bc5245d4c;p=mmh Removed a remaining RETSIGTYPE. Also change a few locals from int to unsigned to prevent signed-unsigned comparison mismatch. --- diff --git a/mts/smtp/smtp.c b/mts/smtp/smtp.c index 8d3a233..caa1c73 100644 --- a/mts/smtp/smtp.c +++ b/mts/smtp/smtp.c @@ -158,7 +158,7 @@ static int sm_werror (void); static int smhear (void); static int sm_rrecord (char *, int *); static int sm_rerror (int); -static RETSIGTYPE alrmser (int); +static void alrmser (int); static char *EHLOset (char *); static int sm_fwrite(char *, int); static int sm_fputs(char *); @@ -446,7 +446,7 @@ sendmail_init (char *client, char *server, int watch, int verbose, #ifdef CYRUS_SASL char *server_mechs; #endif /* CYRUS_SASL */ - int i, result, vecp; + unsigned int i, result, vecp; int pdi[2], pdo[2]; char *vec[15]; @@ -1663,7 +1663,7 @@ sm_rerror (int rc) } -static RETSIGTYPE +static void alrmser (int i) { #ifndef RELIABLE_SIGNALS