From 50c3b63a06a56b18c07951482d88b5d383ea5238 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Sun, 5 Oct 1997 09:40:24 +0000 Subject: Changes to support full make parallelism (-j) in the world target. Reviewed by: Submitted by: Nickolay N. Dudorov" --- libutil/pw_util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libutil/pw_util.c') diff --git a/libutil/pw_util.c b/libutil/pw_util.c index 21e0ca5..5902c07 100644 --- a/libutil/pw_util.c +++ b/libutil/pw_util.c @@ -32,7 +32,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)pw_util.c 8.3 (Berkeley) 4/2/94"; +static const char sccsid[] = "@(#)pw_util.c 8.3 (Berkeley) 4/2/94"; #endif /* not lint */ /* @@ -126,7 +126,7 @@ pw_tmp() int fd; char *p; - if (p = strrchr(path, '/')) + if ((p = strrchr(path, '/'))) ++p; else p = path; @@ -172,7 +172,7 @@ pw_edit(notsetuid) if (!(editor = getenv("EDITOR"))) editor = _PATH_VI; - if (p = strrchr(editor, '/')) + if ((p = strrchr(editor, '/'))) ++p; else p = editor; -- cgit v1.2.3