Skip to content
Snippets Groups Projects
Commit 01379623 authored by micah's avatar micah :speech_balloon:
Browse files

Fixed the include=/exclude= improper dereference problem in the dup handler

parent dc8e99c6
Branches
Tags
No related merge requests found
......@@ -6,6 +6,8 @@ version 0.9.4 -- unreleased
. Fixed erroneous removal of tmpfile when it didn't exit
rdiff:
. Fixed improper include/exclude symlink dereference
dup:
. Fixed improper include/exclude symlink dereference
lib changes
vserver:
. init_vservers: fixed Debian bug #351083 (improper readlink syntax)
......
......@@ -118,12 +118,14 @@ set -o noglob
# excludes
for i in $exclude; do
i=`readlink -f $i`
str="${i//__star__/*}"
execstr="${execstr}--exclude '$str' "
done
# includes
for i in $include; do
i=`readlink -f $i`
str="${i//__star__/*}"
execstr="${execstr}--include '$str' "
done
......@@ -132,7 +134,8 @@ done
if [ $usevserver = yes ]; then
for vserver in $vsnames; do
for vi in $vsinclude; do
str="${vi//__star__/*}"
i=`readlink -f $VROOTDIR/$vserver$vi`
str="${i//__star__/*}"
execstr="${execstr}--include '$VROOTDIR/$vserver$str' "
done
done
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment