]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - trek/getpar.c
Revert to the original phrasing, but remove the man 8 section reference.
[bsdgames-darwin.git] / trek / getpar.c
index b21973e3557782e5fdbc610afaf6feb93ccdeead..4a271d326106ac2eb83669500f20ef3e89217d41 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: getpar.c,v 1.16 2009/05/25 00:39:45 dholland Exp $     */
+/*     $NetBSD: getpar.c,v 1.18 2009/08/12 08:54:54 dholland Exp $     */
 
 /*
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)getpar.c   8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: getpar.c,v 1.16 2009/05/25 00:39:45 dholland Exp $");
+__RCSID("$NetBSD: getpar.c,v 1.18 2009/08/12 08:54:54 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -96,7 +96,7 @@ getfltpar(const char *s)
  **    get yes/no parameter
  **/
 
-const struct cvntab    Yntab[] = {
+static const struct cvntab Yntab[] = {
        { "y",  "es",   (cmdfun)1,      1 },
        { "n",  "o",    (cmdfun)0,      0 },
        { NULL, NULL,   NULL,           0 }
@@ -197,7 +197,7 @@ getstrpar(const char *s, char *r, int l, const char *t)
 
        if (t == 0)
                t = " \t\n;";
-       (void)sprintf(format, "%%%d[^%s]", l, t);
+       (void)snprintf(format, sizeof(format), "%%%d[^%s]", l, t);
        while (1) {
                if ((f = testnl()) && s)
                        printf("%s: ", s);