diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-04-28 07:14:10 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2005-04-28 07:14:10 +0000 |
commit | d53ab39295a4e54149e166e9adb82fc3c537a201 (patch) | |
tree | 0a8b6555571b92c33b69f3a120d2c3b180ac62a6 /usr.bin | |
parent | 79bbf02e6a4ce1903f0116ab6aecd0bbd9233670 (diff) |
That should be FALSE in previous commit.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/mg/dired.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/dired.c b/usr.bin/mg/dired.c index 929bbc29f59..da2b108c476 100644 --- a/usr.bin/mg/dired.c +++ b/usr.bin/mg/dired.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dired.c,v 1.16 2005/04/28 07:13:01 otto Exp $ */ +/* $OpenBSD: dired.c,v 1.17 2005/04/28 07:14:09 otto Exp $ */ /* dired module for mg 2a */ /* by Robert A. Larson */ @@ -311,7 +311,7 @@ d_copy(int f, int n) EFNEW | EFCR, basename(frname))) == NULL) return (ABORT); else if (bufp[0] == '\0') - return (0); + return (FALSE); stat = (copy(frname, toname) >= 0) ? TRUE : FALSE; if (stat != TRUE) return (stat); |