diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-03-12 23:04:00 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-03-12 23:04:00 +0000 |
commit | ea087517e47b7eac796e82b7879ef05d65fd6fe8 (patch) | |
tree | 5938a243bd4f14e7730fb2f9aa13568228bb78f0 | |
parent | 64f997dbc300d1a05ec0874b8d9eaf435d516369 (diff) |
correct warning; maurice@maurice.wan.nl
-rw-r--r-- | sbin/disklabel/editor.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/disklabel/editor.c b/sbin/disklabel/editor.c index 3812431d39f..7cd2ed849a3 100644 --- a/sbin/disklabel/editor.c +++ b/sbin/disklabel/editor.c @@ -1,4 +1,4 @@ -/* $OpenBSD: editor.c,v 1.74 2000/10/22 23:59:40 millert Exp $ */ +/* $OpenBSD: editor.c,v 1.75 2001/03/12 23:03:59 deraadt Exp $ */ /* * Copyright (c) 1997-2000 Todd C. Miller <Todd.Miller@courtesan.com> @@ -28,7 +28,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: editor.c,v 1.74 2000/10/22 23:59:40 millert Exp $"; +static char rcsid[] = "$OpenBSD: editor.c,v 1.75 2001/03/12 23:03:59 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -308,7 +308,7 @@ editor(lp, f, dev, fstabfile) case 'n': if (mountpoints == NULL) { fputs("This option is not valid when run " - "without the -F flag.\n", stderr); + "without the -f flag.\n", stderr); break; } mpcopy(tmpmountpoints, omountpoints); |