From 0b1777bf87e91514dbe14ebfc2ab24b8537fe679 Mon Sep 17 00:00:00 2001 From: christos Date: Fri, 11 Apr 2014 17:30:03 +0000 Subject: [PATCH] recognize -V none --- usr.bin/patch/backupfile.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/usr.bin/patch/backupfile.c b/usr.bin/patch/backupfile.c index 59a2de975780..25d60768cc20 100644 --- a/usr.bin/patch/backupfile.c +++ b/usr.bin/patch/backupfile.c @@ -1,7 +1,7 @@ /* * $OpenBSD: backupfile.c,v 1.19 2006/03/11 19:41:30 otto Exp $ * $DragonFly: src/usr.bin/patch/backupfile.c,v 1.5 2008/08/11 00:05:06 joerg Exp $ - * $NetBSD: backupfile.c,v 1.14 2008/09/19 18:33:34 joerg Exp $ + * $NetBSD: backupfile.c,v 1.15 2014/04/11 17:30:03 christos Exp $ */ /* @@ -22,7 +22,7 @@ */ #include -__RCSID("$NetBSD: backupfile.c,v 1.14 2008/09/19 18:33:34 joerg Exp $"); +__RCSID("$NetBSD: backupfile.c,v 1.15 2014/04/11 17:30:03 christos Exp $"); #include #include @@ -227,11 +227,11 @@ invalid_arg(const char *kind, const char *value, int problem) } static const char *backup_args[] = { - "never", "simple", "nil", "existing", "t", "numbered", 0 + "none", "never", "simple", "nil", "existing", "t", "numbered", 0 }; static enum backup_type backup_types[] = { - simple, simple, numbered_existing, + none, simple, simple, numbered_existing, numbered_existing, numbered, numbered };