From b7529b608ea3e56784c7682b382f285008a2fc90 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Thu, 8 Mar 2012 20:14:55 -0600 Subject: More stabs at getting #includes right, and moving off of deprecated functions. --- lib/lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/lib.c b/lib/lib.c index cc441f9d..a1f4a528 100644 --- a/lib/lib.c +++ b/lib/lib.c @@ -390,7 +390,7 @@ struct string_list *find_in_path(char *path, char *filename) char *cwd = xgetcwd(); for (;;) { - char *next = path ? index(path, ':') : NULL; + char *next = path ? strchr(path, ':') : NULL; int len = next ? next-path : strlen(path); struct string_list *rnext; struct stat st; -- cgit v1.2.3