Added argument to fmt_scan() to specify the buffer size.
[mmh] / uip / ap.c
index 11381f3..fdb47e2 100644 (file)
--- a/uip/ap.c
+++ b/uip/ap.c
@@ -2,12 +2,15 @@
 /*
  * ap.c -- parse addresses 822-style
  *
- * $Id$
+ * This code is Copyright (c) 2002, by the authors of nmh.  See the
+ * COPYRIGHT file in the root directory of the nmh distribution for
+ * complete copyright information.
  */
 
 #include <h/mh.h>
 #include <h/addrsbr.h>
 #include <h/fmt_scan.h>
+#include <h/mts.h>
 
 #define        NADDRS  100
 
@@ -30,7 +33,7 @@ static struct swit switches[] = {
 #define VERSIONSW 5
     { "version", 0 },
 #define        HELPSW  6
-    { "help", 4 },
+    { "help", 0 },
     { NULL, 0 }
 };
 
@@ -39,11 +42,6 @@ static struct format *fmt;
 static int dat[5];
 
 /*
- * prototypes
- */
-int sc_width (void);  /* from termsbr.c */
-
-/*
  * static prototypes
  */
 static int process (char *, int, int);
@@ -84,10 +82,10 @@ main (int argc, char **argv)
                    snprintf (buf, sizeof(buf), "%s [switches] addrs ...",
                        invo_name);
                    print_help (buf, switches, 1);
-                   done (1);
+                   done (0);
                case VERSIONSW:
                    print_version (invo_name);
-                   done (1);
+                   done (0);
 
                case FORMSW: 
                    if (!(form = *argp++) || *form == '-')
@@ -146,7 +144,8 @@ main (int argc, char **argv)
     for (addrp = 0; addrs[addrp]; addrp++)
        status += process (addrs[addrp], width, normalize);
 
-    return done (status);
+    done (status);
+    return 1;
 }
 
 struct pqpair {
@@ -191,7 +190,7 @@ process (char *arg, int length, int norm)
        if (cptr)
            cptr->c_text = p->pq_error;
 
-       fmt_scan (fmt, buffer, length, dat);
+       fmt_scan (fmt, buffer, sizeof buffer - 1, length, dat);
        fputs (buffer, stdout);
 
        free (p->pq_text);