From 4cc677124a3386af05d146e0ac45b1cda4e6843c Mon Sep 17 00:00:00 2001 From: "Andrew V. Samoilov" Date: Thu, 31 Mar 2005 05:28:15 +0000 Subject: [PATCH] * extfs/uarj.in (mcarjfs_copyout): Use the regular extract command, instead of redirecting all the output of the print (p) command. --- vfs/ChangeLog | 7 +++++++ vfs/extfs/uarj.in | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/vfs/ChangeLog b/vfs/ChangeLog index acd6f9860..cb5e7bb28 100644 --- a/vfs/ChangeLog +++ b/vfs/ChangeLog @@ -1,3 +1,10 @@ +2005-03-31 Pavel S. Shirshov + + * extfs/uarj.in (mcarjfs_copyout): Use the regular extract command, + instead of redirecting all the output of the print (p) command. + + From w.v.velzen@sercom.nl + 2005-03-29 Andrew V. Samoilov * samba/param/loadparm.c: Remove init_locals(), lp_smb_passwd_file(), diff --git a/vfs/extfs/uarj.in b/vfs/extfs/uarj.in index e49a08bbb..b7d01eb59 100644 --- a/vfs/extfs/uarj.in +++ b/vfs/extfs/uarj.in @@ -60,7 +60,7 @@ mcarjfs_list () mcarjfs_copyout () { - $ARJ p "$1" "$2" > "$3" 2>/dev/null + $ARJ e -y "$1" "$2" -jw"$3" >/dev/null 2>/dev/null }