CVSROOT:        /sources/nmh
Module name:    nmh
Branch:         
Changes by:     Josh Bressers <[EMAIL PROTECTED]>       06/01/16 17:07:15

Modified files:
        uip            : post.c spost.c 

Log message:
        * uip/post.c, uip/spost.c: Move the uptolow macro from spost.c to post.c
        where it is needed.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/nmh/nmh/uip/post.c.diff?tr1=1.16&tr2=1.17&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/nmh/nmh/uip/spost.c.diff?tr1=1.15&tr2=1.16&r1=text&r2=text

Patches:
Index: nmh/uip/post.c
diff -u nmh/uip/post.c:1.16 nmh/uip/post.c:1.17
--- nmh/uip/post.c:1.16 Mon Jan 16 10:00:47 2006
+++ nmh/uip/post.c      Mon Jan 16 17:07:14 2006
@@ -2,7 +2,7 @@
 /*
  * post.c -- enter messages into the mail transport system
  *
- * $Id: post.c,v 1.16 2006/01/16 10:00:47 opk Exp $
+ * $Id: post.c,v 1.17 2006/01/16 17:07:14 bress 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
@@ -48,6 +48,8 @@
 
 #define FCCS           10      /* max number of fccs allowed */
 
+#define        uptolow(c)      ((isalpha(c) && isupper (c)) ? tolower (c) : c)
+
 /* In the following array of structures, the numeric second field of the
    structures (minchars) is apparently used like this:
 
Index: nmh/uip/spost.c
diff -u nmh/uip/spost.c:1.15 nmh/uip/spost.c:1.16
--- nmh/uip/spost.c:1.15        Fri Jan  6 21:51:44 2006
+++ nmh/uip/spost.c     Mon Jan 16 17:07:15 2006
@@ -5,7 +5,7 @@
  * This is a simpler, faster, replacement for "post" for use
  * when "sendmail" is the transport system.
  *
- * $Id: spost.c,v 1.15 2006/01/06 21:51:44 bress Exp $
+ * $Id: spost.c,v 1.16 2006/01/16 17:07:15 bress 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
@@ -21,8 +21,6 @@
 #include <h/mts.h>
 #include <h/utils.h>
 
-#define        uptolow(c)      ((isalpha(c) && isupper (c)) ? tolower (c) : c)
-
 #define MAX_SM_FIELD   1476    /* < largest hdr field sendmail will accept */
 #define FCCS           10      /* max number of fccs allowed */
 


_______________________________________________
Nmh-commits mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/nmh-commits

Reply via email to