]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
sprintf -> snprintf
authordholland <dholland@NetBSD.org>
Thu, 4 Jun 2009 04:48:04 +0000 (04:48 +0000)
committerdholland <dholland@NetBSD.org>
Thu, 4 Jun 2009 04:48:04 +0000 (04:48 +0000)
cribbage/io.c
cribbage/score.c
cribbage/support.c

index ea2fedbaf13180d00489cbd9e7a524530dd04569..b661f2c93820befba7ebe519bab8c37a0c4ea887 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: io.c,v 1.21 2007/12/15 19:44:39 perry Exp $    */
+/*     $NetBSD: io.c,v 1.22 2009/06/04 04:48:04 dholland Exp $ */
 
 /*-
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)io.c       8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: io.c,v 1.21 2007/12/15 19:44:39 perry Exp $");
+__RCSID("$NetBSD: io.c,v 1.22 2009/06/04 04:48:04 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -367,7 +367,7 @@ msg(const char *fmt, ...)
        va_list ap;
 
        va_start(ap, fmt);
-       (void)vsprintf(&Msgbuf[Newpos], fmt, ap);
+       (void)vsnprintf(&Msgbuf[Newpos], sizeof(Msgbuf)-Newpos, fmt, ap);
        Newpos = strlen(Msgbuf);
        va_end(ap);
        endmsg();
@@ -383,7 +383,7 @@ addmsg(const char *fmt, ...)
        va_list ap;
 
        va_start(ap, fmt);
-       (void)vsprintf(&Msgbuf[Newpos], fmt, ap);
+       (void)vsnprintf(&Msgbuf[Newpos], sizeof(Msgbuf)-Newpos, fmt, ap);
        Newpos = strlen(Msgbuf);
        va_end(ap);
 }
index 3c7b4a2671c2f913e446f687173f85157e5a94d5..932d757d514d3ffcc214ad5fb33fc2ab9debd1d1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: score.c,v 1.13 2007/12/15 19:44:39 perry Exp $ */
+/*     $NetBSD: score.c,v 1.14 2009/06/04 04:48:04 dholland Exp $      */
 
 /*-
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)score.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: score.c,v 1.13 2007/12/15 19:44:39 perry Exp $");
+__RCSID("$NetBSD: score.c,v 1.14 2009/06/04 04:48:04 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -153,7 +153,8 @@ scorehand(const CARD hand[], CARD starter, int n, BOOLEAN crb,
        hscore += i;
        if (do_explain) {
                if (i > 0) {
-                       (void) sprintf(buf, "%d points in fifteens", i);
+                       (void) snprintf(buf, sizeof(buf),
+                           "%d points in fifteens", i);
                        strcat(explan, buf);
                } else
                        strcat(explan, "No fifteens");
@@ -162,7 +163,8 @@ scorehand(const CARD hand[], CARD starter, int n, BOOLEAN crb,
        hscore += i;
        if (do_explain) {
                if (i > 0) {
-                       (void) sprintf(buf, ", %d points in pairs, %d in runs",
+                       (void) snprintf(buf, sizeof(buf),
+                           ", %d points in pairs, %d in runs",
                            pairpoints, runpoints);
                        strcat(explan, buf);
                } else
index fefc4f4255255535d26495097f220fe110471fb2..e711d8b6c9116653e32a2b70ce485d1f8a278028 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: support.c,v 1.12 2006/03/20 12:32:21 rtr Exp $ */
+/*     $NetBSD: support.c,v 1.13 2009/06/04 04:48:04 dholland Exp $    */
 
 /*-
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)support.c  8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: support.c,v 1.12 2006/03/20 12:32:21 rtr Exp $");
+__RCSID("$NetBSD: support.c,v 1.13 2009/06/04 04:48:04 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -134,7 +134,7 @@ plyrhand(const CARD hand[], const char *s)
        BOOLEAN win;
 
        prhand(hand, CINHAND, Playwin, FALSE);
-       (void) sprintf(prompt, "Your %s scores ", s);
+       (void) snprintf(prompt, sizeof(prompt), "Your %s scores ", s);
        i = scorehand(hand, turnover, CINHAND, strcmp(s, "crib") == 0, explain);
        if ((j = number(0, 29, prompt)) == 19)
                j = 0;