diff options
author | Jim Meyering <jim@meyering.net> | 1997-12-10 10:31:25 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-12-10 10:31:25 +0000 |
commit | 4f242b4d512d73b12848caca22e03d72112f1314 (patch) | |
tree | 3a605960b9c4f0dbb598440adca546067c958c15 | |
parent | 3cd84da3a607381b666856481c3feb7d9161b706 (diff) | |
download | coreutils-4f242b4d512d73b12848caca22e03d72112f1314.tar.xz |
use NULL, '\0' instead of zeroes
-rw-r--r-- | src/su.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -530,8 +530,10 @@ main (int argc, char **argv) error (1, 0, _("user %s does not exist"), new_user); endpwent (); - /* make sure pw->pw_shell is non-zero */ - if (pw->pw_shell == 0 || pw->pw_shell[0] == 0) + /* Make sure pw->pw_shell is non-NULL. It may be NULL when NEW_USER + is a username that is retrieved via NIS (YP), but that doesn't have + a default shell listed. */ + if (pw->pw_shell == NULL || pw->pw_shell[0] == '\0') pw->pw_shell = (char *) DEFAULT_SHELL; /* Make a copy of the password information and point pw at the local |