diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-12-17 00:00:15 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-12-17 00:00:15 +0000 |
| commit | 3cce01a41614fd1b86b75c1303496ffbc97098a9 (patch) | |
| tree | 9171bf0e609c77bc332ee9b25f8bf527e9c46097 /release | |
| parent | 60757ce6ee41f1b19bed3a4eb49442c1d08633f7 (diff) | |
Notes
Diffstat (limited to 'release')
| -rw-r--r-- | release/sysinstall/misc.c | 4 | ||||
| -rw-r--r-- | release/sysinstall/sysinstall.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/misc.c b/release/sysinstall/misc.c index 6508fc7634fc..ebca91f33576 100644 --- a/release/sysinstall/misc.c +++ b/release/sysinstall/misc.c @@ -1,7 +1,7 @@ /* * Miscellaneous support routines.. * - * $Id: misc.c,v 1.24 1996/12/11 18:23:18 jkh Exp $ + * $Id: misc.c,v 1.25 1996/12/12 22:38:41 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -80,7 +80,7 @@ string_concat(char *one, char *two) char * sstrncpy(char *dst, const char *src, int size) { - dst[--size] = '\0'; + dst[size] = '\0'; return strncpy(dst, src, size); } diff --git a/release/sysinstall/sysinstall.h b/release/sysinstall/sysinstall.h index 3a7c7fd69a62..fd8b2558c741 100644 --- a/release/sysinstall/sysinstall.h +++ b/release/sysinstall/sysinstall.h @@ -4,7 +4,7 @@ * This is probably the last attempt in the `sysinstall' line, the next * generation being slated to essentially a complete rewrite. * - * $Id: sysinstall.h,v 1.93 1996/12/12 08:33:38 jkh Exp $ + * $Id: sysinstall.h,v 1.94 1996/12/14 23:09:07 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -144,7 +144,7 @@ #define ATTR_TITLE button_active_attr /* Handy strncpy() macro */ -#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to)) +#define SAFE_STRCPY(to, from) sstrncpy((to), (from), sizeof (to) - 1) /*** Types ***/ typedef unsigned int Boolean; |
