diff options
author | Matt Kraai | 2001-12-20 23:13:26 +0000 |
---|---|---|
committer | Matt Kraai | 2001-12-20 23:13:26 +0000 |
commit | 1f0c43668ac332cbcf61cbdf71844799327cc8b9 (patch) | |
tree | 97414e991363fa613f229019d697280cae1097e0 /shell/ash.c | |
parent | 31c73af656813b5cadcb1dd27adb9bbc62a98987 (diff) | |
download | busybox-1f0c43668ac332cbcf61cbdf71844799327cc8b9.zip busybox-1f0c43668ac332cbcf61cbdf71844799327cc8b9.tar.gz |
Remove `== TRUE' tests and convert `!= TRUE' and `== FALSE' tests to use !.
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index 16c5ec0..177ec1c 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -8172,7 +8172,7 @@ umaskcmd(int argc, char **argv) umask(mask); } else { mask = ~mask & 0777; - if (parse_mode(ap, &mask) == FALSE) { + if (! parse_mode(ap, &mask)) { error("Illegal mode: %s", ap); } umask(~mask & 0777); @@ -12481,7 +12481,7 @@ findvar(struct var **vpp, const char *name) /* * Copyright (c) 1999 Herbert Xu <herbert@debian.org> * This file contains code for the times builtin. - * $Id: ash.c,v 1.37 2001/12/06 03:37:38 aaronl Exp $ + * $Id: ash.c,v 1.38 2001/12/20 23:13:19 kraai Exp $ */ static int timescmd (int argc, char **argv) { |