summaryrefslogtreecommitdiffstats
path: root/monop/prop.c
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2008-02-19 09:32:34 +0000
committerdholland <dholland@NetBSD.org>2008-02-19 09:32:34 +0000
commit83ccf38996c164203905a620ecf3c8e14ecb1768 (patch)
tree18bc034193de0cb15ca9b5ffc707f6961cdb54e7 /monop/prop.c
parent7b6be30c35ffc31d7abab3b759819288cda3cf45 (diff)
downloadbsdgames-darwin-83ccf38996c164203905a620ecf3c8e14ecb1768.tar.gz
bsdgames-darwin-83ccf38996c164203905a620ecf3c8e14ecb1768.tar.zst
bsdgames-darwin-83ccf38996c164203905a620ecf3c8e14ecb1768.zip
Don't use sprintf; use snprintf.
Diffstat (limited to 'monop/prop.c')
-rw-r--r--monop/prop.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/monop/prop.c b/monop/prop.c
index f5784b6e..916129ad 100644
--- a/monop/prop.c
+++ b/monop/prop.c
@@ -1,4 +1,4 @@
-/* $NetBSD: prop.c,v 1.12 2008/01/28 06:16:13 dholland Exp $ */
+/* $NetBSD: prop.c,v 1.13 2008/02/19 09:32:34 dholland Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)prop.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: prop.c,v 1.12 2008/01/28 06:16:13 dholland Exp $");
+__RCSID("$NetBSD: prop.c,v 1.13 2008/02/19 09:32:34 dholland Exp $");
#endif
#endif /* not lint */
@@ -180,7 +180,8 @@ bid()
i = (i + 1) % num_play;
if (in[i]) {
do {
- (void)sprintf(buf, "%s: ", name_list[i]);
+ (void)snprintf(buf, sizeof(buf), "%s: ",
+ name_list[i]);
cur_bid = get_int(buf);
if (cur_bid == 0) {
in[i] = FALSE;