summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade/misc.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1996-12-12 22:38:41 +0000
committerjkh <jkh@FreeBSD.org>1996-12-12 22:38:41 +0000
commit3f15fcca9896110100559bf4db6d99613a6a93e2 (patch)
treedb14f6e03f22f56c16f7e3d87573f0a510a090b2 /usr.sbin/sade/misc.c
parent20ea94ba7dca8bed454a1891b2d427d6fd445bcf (diff)
downloadFreeBSD-src-3f15fcca9896110100559bf4db6d99613a6a93e2.zip
FreeBSD-src-3f15fcca9896110100559bf4db6d99613a6a93e2.tar.gz
Add some additional smarts for XFree86 configuration.
Fix a bogon I thought I fixed in the last commit.
Diffstat (limited to 'usr.sbin/sade/misc.c')
-rw-r--r--usr.sbin/sade/misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sade/misc.c b/usr.sbin/sade/misc.c
index af88fe3..6508fc7 100644
--- a/usr.sbin/sade/misc.c
+++ b/usr.sbin/sade/misc.c
@@ -1,7 +1,7 @@
/*
* Miscellaneous support routines..
*
- * $Id: misc.c,v 1.23 1996/12/09 08:22:15 jkh Exp $
+ * $Id: misc.c,v 1.24 1996/12/11 18:23:18 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -80,8 +80,8 @@ string_concat(char *one, char *two)
char *
sstrncpy(char *dst, const char *src, int size)
{
- dst[size - 1] = '\0';
- return strncpy(dst, src, size - 1);
+ dst[--size] = '\0';
+ return strncpy(dst, src, size);
}
/* Concatenate three strings into static storage */
OpenPOWER on IntegriCloud