1234567891011121314151617181920212223 |
- --- cryptsetup-1.1.0.orig/compile 2009-08-24 17:04:56.000000000 +0200
- +++ cryptsetup-1.1.0/compile 2010-02-14 18:24:56.000000000 +0100
- @@ -1,7 +1,7 @@
-
-
-
- -scriptversion=2009-04-28.21;
- +scriptversion=2009-10-06.20;
-
-
-
- @@ -124,9 +124,9 @@ trap "rmdir '$lockdir'; exit 1" 1 2 15
- ret=$?
-
- if test -f "$cofile"; then
- - mv "$cofile" "$ofile"
- + test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
- elif test -f "${cofile}bj"; then
- - mv "${cofile}bj" "$ofile"
- + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
- fi
-
- rmdir "$lockdir"
|