diff options
author | jkh <jkh@FreeBSD.org> | 1998-02-13 08:01:01 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-02-13 08:01:01 +0000 |
commit | 7fe482c8b091417d57624355c037588e9b7f3c8f (patch) | |
tree | f96ee08757fc3b74c0ad0748b50a7dc98d05fd32 | |
parent | f571342745a16cd597792f7274bc3c6486053803 (diff) | |
download | FreeBSD-src-7fe482c8b091417d57624355c037588e9b7f3c8f.zip FreeBSD-src-7fe482c8b091417d57624355c037588e9b7f3c8f.tar.gz |
MF22: correct bogus failure return.
-rw-r--r-- | release/sysinstall/disks.c | 4 | ||||
-rw-r--r-- | usr.sbin/sade/disks.c | 4 | ||||
-rw-r--r-- | usr.sbin/sysinstall/disks.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/release/sysinstall/disks.c b/release/sysinstall/disks.c index 7ea1727..78a5ddc 100644 --- a/release/sysinstall/disks.c +++ b/release/sysinstall/disks.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: disks.c,v 1.93 1997/10/18 21:22:25 jkh Exp $ + * $Id: disks.c,v 1.94 1998/02/01 05:58:42 steve Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -586,7 +586,7 @@ diskPartitionEditor(dialogMenuItem *self) return i | DITEM_RESTORE; } } - return DITEM_FAILURE; + return DITEM_SUCCESS; } int diff --git a/usr.sbin/sade/disks.c b/usr.sbin/sade/disks.c index 7ea1727..78a5ddc 100644 --- a/usr.sbin/sade/disks.c +++ b/usr.sbin/sade/disks.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: disks.c,v 1.93 1997/10/18 21:22:25 jkh Exp $ + * $Id: disks.c,v 1.94 1998/02/01 05:58:42 steve Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -586,7 +586,7 @@ diskPartitionEditor(dialogMenuItem *self) return i | DITEM_RESTORE; } } - return DITEM_FAILURE; + return DITEM_SUCCESS; } int diff --git a/usr.sbin/sysinstall/disks.c b/usr.sbin/sysinstall/disks.c index 7ea1727..78a5ddc 100644 --- a/usr.sbin/sysinstall/disks.c +++ b/usr.sbin/sysinstall/disks.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: disks.c,v 1.93 1997/10/18 21:22:25 jkh Exp $ + * $Id: disks.c,v 1.94 1998/02/01 05:58:42 steve Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -586,7 +586,7 @@ diskPartitionEditor(dialogMenuItem *self) return i | DITEM_RESTORE; } } - return DITEM_FAILURE; + return DITEM_SUCCESS; } int |