nmh-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated


From: David Levine
Subject: [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. a2469f5ecbca3a179251ac9b777b561bc5245d4c
Date: Mon, 09 Jan 2012 20:08:56 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The nmh Mail Handling System".

The branch, master has been updated
       via  a2469f5ecbca3a179251ac9b777b561bc5245d4c (commit)
      from  f475d48680eb8bb0b6543efab9057eba2773666e (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=a2469f5ecbca3a179251ac9b777b561bc5245d4c


commit a2469f5ecbca3a179251ac9b777b561bc5245d4c
Author: David Levine <address@hidden>
Date:   Mon Jan 9 14:08:38 2012 -0600

    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

-----------------------------------------------------------------------

Summary of changes:
 mts/smtp/smtp.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
The nmh Mail Handling System



reply via email to

[Prev in Thread] Current Thread [Next in Thread]