nmh-commits
[Top][All Lists]
Advanced

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

[Nmh-commits] nmh/mts/smtp smtp.c


From: Peter Maydell
Subject: [Nmh-commits] nmh/mts/smtp smtp.c
Date: Fri, 05 Nov 2010 22:06:10 +0000

CVSROOT:        /cvsroot/nmh
Module name:    nmh
Changes by:     Peter Maydell <pm215>   10/11/05 22:06:10

Modified files:
        mts/smtp       : smtp.c 

Log message:
        Silence a (harmless) uninitialized variable warning.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/nmh/mts/smtp/smtp.c?cvsroot=nmh&r1=1.29&r2=1.30

Patches:
Index: smtp.c
===================================================================
RCS file: /cvsroot/nmh/nmh/mts/smtp/smtp.c,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -b -r1.29 -r1.30
--- smtp.c      3 Feb 2010 05:56:57 -0000       1.29
+++ smtp.c      5 Nov 2010 22:06:10 -0000       1.30
@@ -1,7 +1,7 @@
 /*
  * smtp.c -- nmh SMTP interface
  *
- * $Id: smtp.c,v 1.29 2010/02/03 05:56:57 ehood Exp $
+ * $Id: smtp.c,v 1.30 2010/11/05 22:06:10 pm215 Exp $
  *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
@@ -1208,7 +1208,7 @@
 static int
 smhear (void)
 {
-    int i, code, cont, bc, rc, more;
+    int i, code, cont, bc = 0, rc, more;
     unsigned char *bp;
     char *rp;
     char **ehlo = NULL, buffer[BUFSIZ];



reply via email to

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