From bab69f220897024dfb8edbb07143e64323901dca Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Thu, 31 Oct 2002 20:56:35 +0000 Subject: [PATCH] Added -U switch to nomarch for file extractions --- ChangeLog | 3 ++- mbsetup/m_archive.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8ccab168..c584bbbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -35,7 +35,8 @@ v0.35.05 19-Oct-2002 When installing the default unarchivers (new installations) the rar is used to unarchive instead of unrar when available, rar is compiled static and prefered. - Added support for the nomarch unarchiver. + Added support for the nomarch unarchiver. Files are extracted + with the -U switch for nodelists. Removed from Screen 1.13 the unused switches Res Future and Repl ext. Fixed some help texts. Added in screen 1.14 settings for Plus All, Notify, Passwd and diff --git a/mbsetup/m_archive.c b/mbsetup/m_archive.c index 613dcbba..2ac0b655 100644 --- a/mbsetup/m_archive.c +++ b/mbsetup/m_archive.c @@ -96,7 +96,7 @@ int CountArchive(void) * Override arc when nomarch is available */ if (strlen(_PATH_NOMARCH)) { - sprintf(archiver.funarc, "%s", _PATH_NOMARCH); + sprintf(archiver.funarc, "%s -U", _PATH_NOMARCH); sprintf(archiver.munarc, "%s", _PATH_NOMARCH); sprintf(archiver.iunarc, "%s", _PATH_NOMARCH); }