diff options
author | ache <ache@FreeBSD.org> | 2000-08-30 06:26:42 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2000-08-30 06:26:42 +0000 |
commit | 11adb5ee6788402b4f2aa3ebdb613a9ca552a12a (patch) | |
tree | 7e12317ceda443fb0bdfcc3d10b19e0cbeb23fd3 /lib/libwrap | |
parent | 070da128c7ecc8c7886e04014e76b7ce1ae21296 (diff) | |
download | FreeBSD-src-11adb5ee6788402b4f2aa3ebdb613a9ca552a12a.zip FreeBSD-src-11adb5ee6788402b4f2aa3ebdb613a9ca552a12a.tar.gz |
Replace strtok with strsep (strtok is not allowed in libraries)
Approved by: markm
Diffstat (limited to 'lib/libwrap')
-rw-r--r-- | lib/libwrap/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libwrap/Makefile b/lib/libwrap/Makefile index 022da44..f69be1c 100644 --- a/lib/libwrap/Makefile +++ b/lib/libwrap/Makefile @@ -16,7 +16,7 @@ CFLAGS+=-DFACILITY=LOG_AUTH -DHOSTS_ACCESS -DNETGROUP -DDAEMON_UMASK=022 \ -DREAL_DAEMON_DIR=\"/usr/libexec\" -DPROCESS_OPTIONS \ -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \ -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" \ - -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME + -DSYS_ERRLIST_DEFINED -DALWAYS_HOSTNAME -DUSE_STRSEP .if !defined(NOINET6) CFLAGS+=-DINET6 .endif |