diff options
| author | Jacques Vidrine <nectar@FreeBSD.org> | 2003-04-29 21:13:50 +0000 |
|---|---|---|
| committer | Jacques Vidrine <nectar@FreeBSD.org> | 2003-04-29 21:13:50 +0000 |
| commit | 5723e501abb675701352eb3e9fd58bb3cc2c649d (patch) | |
| tree | e9749f1ff2693755bce73e10528fc8cc6a6563ea /lib/libc/gen/confstr.c | |
| parent | a8b5a9cd120e319cacf1c68e4a257e6955e0d5d6 (diff) | |
Notes
Diffstat (limited to 'lib/libc/gen/confstr.c')
| -rw-r--r-- | lib/libc/gen/confstr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/gen/confstr.c b/lib/libc/gen/confstr.c index 966c3fe2ae19..2885afd3bd38 100644 --- a/lib/libc/gen/confstr.c +++ b/lib/libc/gen/confstr.c @@ -37,13 +37,14 @@ static char sccsid[] = "@(#)confstr.c 8.1 (Berkeley) 6/4/93"; #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include "namespace.h" #include <sys/param.h> - #include <errno.h> #include <limits.h> #include <paths.h> #include <string.h> #include <unistd.h> +#include "un-namespace.h" size_t @@ -114,7 +115,7 @@ confstr(int name, char *buf, size_t len) docopy: if (len != 0 && buf != NULL) - strlcpy(buf, p, len); + _strlcpy(buf, p, len); return (strlen(p) + 1); default: |
