From 1fd0d1f6de5580cff1657f5e3b414cf651989345 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sat, 15 Mar 2008 03:28:39 +0000 Subject: [PATCH] Support NetBSD's --insecure as a synonym for -P. --- usr.bin/tar/bsdtar.c | 1 + 1 file changed, 1 insertion(+) diff --git a/usr.bin/tar/bsdtar.c b/usr.bin/tar/bsdtar.c index 103d88c4614c..b158ebf18cc0 100644 --- a/usr.bin/tar/bsdtar.c +++ b/usr.bin/tar/bsdtar.c @@ -189,6 +189,7 @@ static const struct option tar_longopts[] = { { "help", no_argument, NULL, OPTION_HELP }, { "include", required_argument, NULL, OPTION_INCLUDE }, { "interactive", no_argument, NULL, 'w' }, + { "insecure", no_argument, NULL, 'P' }, { "keep-old-files", no_argument, NULL, 'k' }, { "list", no_argument, NULL, 't' }, { "modification-time", no_argument, NULL, 'm' },