aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
authorkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-12-20 23:13:26 +0000
committerkraai <kraai@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-12-20 23:13:26 +0000
commitc3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65 (patch)
tree97414e991363fa613f229019d697280cae1097e0 /shell/ash.c
parent62ecfc62e8eb535636f3c1029052f4b13b9b2183 (diff)
downloadbusybox-w32-c3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65.tar.gz
busybox-w32-c3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65.tar.bz2
busybox-w32-c3d7ff736bf14fd86f3f3f1246bc66d5e1afbc65.zip
Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.
git-svn-id: svn://busybox.net/trunk/busybox@3925 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 16c5ec0f2..177ec1c26 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -8172,7 +8172,7 @@ umaskcmd(int argc, char **argv)
8172 umask(mask); 8172 umask(mask);
8173 } else { 8173 } else {
8174 mask = ~mask & 0777; 8174 mask = ~mask & 0777;
8175 if (parse_mode(ap, &mask) == FALSE) { 8175 if (! parse_mode(ap, &mask)) {
8176 error("Illegal mode: %s", ap); 8176 error("Illegal mode: %s", ap);
8177 } 8177 }
8178 umask(~mask & 0777); 8178 umask(~mask & 0777);
@@ -12481,7 +12481,7 @@ findvar(struct var **vpp, const char *name)
12481/* 12481/*
12482 * Copyright (c) 1999 Herbert Xu <herbert@debian.org> 12482 * Copyright (c) 1999 Herbert Xu <herbert@debian.org>
12483 * This file contains code for the times builtin. 12483 * This file contains code for the times builtin.
12484 * $Id: ash.c,v 1.37 2001/12/06 03:37:38 aaronl Exp $ 12484 * $Id: ash.c,v 1.38 2001/12/20 23:13:19 kraai Exp $
12485 */ 12485 */
12486static int timescmd (int argc, char **argv) 12486static int timescmd (int argc, char **argv)
12487{ 12487{