aboutsummaryrefslogtreecommitdiff
path: root/contrib/ipfilter/tools
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2015-05-22 18:31:26 +0000
committerEd Maste <emaste@FreeBSD.org>2015-05-22 18:31:26 +0000
commit8d121298ba4fa706702608ee1dcc6344967f445d (patch)
treef6ae8fe976329ece5f9794b219d37c030f5a7bfa /contrib/ipfilter/tools
parent1c73ea3ef893472fab88132da05d8cf88719a303 (diff)
downloadsrc-8d121298ba4fa706702608ee1dcc6344967f445d.tar.gz
src-8d121298ba4fa706702608ee1dcc6344967f445d.zip
ipf(1): Use strchr(3) instead of deprecated index(3)
Reviewed by: cy MFC after: 1 week Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D2607
Notes
Notes: svn path=/head/; revision=283295
Diffstat (limited to 'contrib/ipfilter/tools')
-rw-r--r--contrib/ipfilter/tools/ipf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/ipfilter/tools/ipf.c b/contrib/ipfilter/tools/ipf.c
index dd601426debd..08cfb0a90191 100644
--- a/contrib/ipfilter/tools/ipf.c
+++ b/contrib/ipfilter/tools/ipf.c
@@ -296,7 +296,7 @@ static void packetlogon(opt)
printf("set log flag: nomatch\n");
change = 1;
}
- if (strstr(opt, "block") || index(opt, 'd')) {
+ if (strstr(opt, "block") || strchr(opt, 'd')) {
flag |= FF_LOGBLOCK;
if (opts & OPT_VERBOSE)
printf("set log flag: block\n");