aboutsummaryrefslogtreecommitdiff
path: root/toys/which.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2012-03-08 20:14:55 -0600
committerRob Landley <rob@landley.net>2012-03-08 20:14:55 -0600
commitb7529b608ea3e56784c7682b382f285008a2fc90 (patch)
tree95f47b19499f5df2bc78f303a63588da4ce43ce4 /toys/which.c
parent13cacbd09de09e38e4d1227f7122fda8f1d6fc63 (diff)
downloadtoybox-b7529b608ea3e56784c7682b382f285008a2fc90.tar.gz
More stabs at getting #includes right, and moving off of deprecated functions.
Diffstat (limited to 'toys/which.c')
-rw-r--r--toys/which.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/which.c b/toys/which.c
index 13198363..0ffc725a 100644
--- a/toys/which.c
+++ b/toys/which.c
@@ -30,7 +30,7 @@ static int which_in_path(char *filename)
// If they gave us a path, don't worry about $PATH or -a
- if (index(filename, '/')) {
+ if (strchr(filename, '/')) {
// Confirm it has the executable bit set, and it's not a directory.
if (!access(filename, X_OK)) {
struct stat st;