commit | 355ec353be14f33f69fe3e3992ab5a815b3a01a6 | [log] [tgz] |
---|---|---|
author | Denys Vlasenko <vda.linux@googlemail.com> | Mon Apr 02 13:34:57 2018 +0200 |
committer | Denys Vlasenko <vda.linux@googlemail.com> | Mon Apr 02 13:34:57 2018 +0200 |
tree | c6056dce95b4021710d2e9315d076407036bf775 | |
parent | c4c2012284c3a3a45843e9400379c84855d853ef [diff] |
ash: redir: Fix typo in noclobber code Upstream commit "redir: Fix typo in noclobber code" Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/shell/ash.c b/shell/ash.c index 70a278f..35ea58f 100644 --- a/shell/ash.c +++ b/shell/ash.c
@@ -5391,7 +5391,7 @@ f = open(fname, O_WRONLY, 0666); if (f < 0) goto ecreate; - if (fstat(f, &sb) < 0 && S_ISREG(sb.st_mode)) { + if (!fstat(f, &sb) && S_ISREG(sb.st_mode)) { close(f); errno = EEXIST; goto ecreate;