diff options
author | bitblt <bitblt@cvs.openbsd.org> | 1997-03-04 16:32:37 +0000 |
---|---|---|
committer | bitblt <bitblt@cvs.openbsd.org> | 1997-03-04 16:32:37 +0000 |
commit | 2a993c7e5c3faf3a8490173cd444e2c0cfb9e929 (patch) | |
tree | cac5fb85990dd6754011e17a8ee56443a4d193a9 /lib | |
parent | e540e0ff3f3e1b4c1e57ebdf967f40272743c236 (diff) |
sprintf -> snprintf paranoia
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libwrap/options.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libwrap/options.c b/lib/libwrap/options.c index 30e456f3887..411cf72b2ef 100644 --- a/lib/libwrap/options.c +++ b/lib/libwrap/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.1 1997/02/26 03:06:54 downsj Exp $ */ +/* $OpenBSD: options.c,v 1.2 1997/03/04 16:32:36 bitblt Exp $ */ /* * General skeleton for adding options to the access control language. The @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#) options.c 1.17 96/02/11 17:01:31"; #else -static char rcsid[] = "$OpenBSD: options.c,v 1.1 1997/02/26 03:06:54 downsj Exp $"; +static char rcsid[] = "$OpenBSD: options.c,v 1.2 1997/03/04 16:32:36 bitblt Exp $"; #endif #endif @@ -232,7 +232,7 @@ struct request_info *request; int ch; FILE *fp; - sprintf(path, "%s/%s", value, eval_daemon(request)); + snprintf(path, sizeof (path), "%s/%s", value, eval_daemon(request)); if ((fp = fopen(path, "r")) != 0) { while ((ch = fgetc(fp)) == 0) write(request->fd, "", 1); |