summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorotto <otto@openbsd.org>2005-04-28 07:14:09 +0000
committerotto <otto@openbsd.org>2005-04-28 07:14:09 +0000
commit06471a5e98c18b20a9556df097b38f2f30a47c86 (patch)
tree56258ee6370eb7876f992735f305505511440c77
parentNULL is not an int. Han Boetes. (diff)
downloadwireguard-openbsd-06471a5e98c18b20a9556df097b38f2f30a47c86.tar.xz
wireguard-openbsd-06471a5e98c18b20a9556df097b38f2f30a47c86.zip
That should be FALSE in previous commit.
-rw-r--r--usr.bin/mg/dired.c4
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);