aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2002-12-30 10:16:56 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2002-12-30 10:16:56 +0000
commit987d3799f3bb1ce1c70bc89e5de3b89488f894c8 (patch)
tree69003d27117852c39034346436754b2df6882dbe /usr.sbin
parenta7a73b95d169a9e9ec2e6ff490bfc2e1eb79cb47 (diff)
Use basename(3).
Notes
Notes: svn path=/head/; revision=108443
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/chown/chown.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/chown/chown.c b/usr.sbin/chown/chown.c
index fcc10e9c7e16..d737bdb226d9 100644
--- a/usr.sbin/chown/chown.c
+++ b/usr.sbin/chown/chown.c
@@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$");
#include <errno.h>
#include <fts.h>
#include <grp.h>
+#include <libgen.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
@@ -79,9 +80,7 @@ main(int argc, char **argv)
int ch, fts_options, rval;
char *cp;
- cp = strrchr(argv[0], '/');
- cp = (cp != NULL) ? cp + 1 : argv[0];
- ischown = (strcmp(cp, "chown") == 0);
+ ischown = (strcmp(basename(argv[0]), "chown") == 0);
Hflag = Lflag = Rflag = fflag = hflag = vflag = 0;
while ((ch = getopt(argc, argv, "HLPRfhv")) != -1)