diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2009-07-01 15:07:25 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2009-07-01 15:07:25 +0000 |
| commit | 041057687fc1d4a2f9912fcb86e04517686b3642 (patch) | |
| tree | 0f0d181cebf9c50bf3e2d9d4a50643eafde9a140 /Src/Modules/newuser.c | |
| parent | 27080: it wasnt possible to exit menu selection cleanly (diff) | |
| download | zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar.gz zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar.bz2 zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar.lz zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar.xz zsh-041057687fc1d4a2f9912fcb86e04517686b3642.tar.zst zsh-041057687fc1d4a2f9912fcb86e04517686b3642.zip | |
27083: non-zero status on failures to find or execute file in "."
Diffstat (limited to 'Src/Modules/newuser.c')
| -rw-r--r-- | Src/Modules/newuser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Modules/newuser.c b/Src/Modules/newuser.c index cc020d5bd..71902da7d 100644 --- a/Src/Modules/newuser.c +++ b/Src/Modules/newuser.c @@ -97,7 +97,7 @@ boot_(UNUSED(Module m)) VARARR(char, buf, strlen(*sp) + 9); sprintf(buf, "%s/newuser", *sp); - if (!source(buf)) + if (source(buf) != SOURCE_NOT_FOUND) break; } |
