Regular commit
authorCarl Baldwin <cnb@ball.(none)>
Tue, 25 Oct 2005 16:26:47 +0000 (10:26 -0600)
committerCarl Baldwin <cnb@ball.(none)>
Tue, 25 Oct 2005 16:26:47 +0000 (10:26 -0600)
main.cpp
scripts/files-from-date.sh

index d8a1214192108082e96fe2b78dd11a91e50065de..c7ae3876fbb13f84226cf415cc29825c862b21b7 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -124,6 +124,7 @@ template<class ITER>
 void updateLastBackupDate( ITER begin, const ITER &end, unsigned long long date ) {
   while( begin != end ) {
     (*begin)->setLastBackupDate( date );
+    ++begin;
   }
 }
 
index 6680e9772395c9d59e8f74c30b6f9793e06a8a2c..80c0ad374ed448f84e8e1af2eb515e8020c042e2 100755 (executable)
@@ -2,4 +2,4 @@
 
 [ $# == 1 ] || exit 1
 
-awk --posix 'BEGIN { RS="\0" } { d=$7; gsub( /([^ ]*[ ]){7,7}/, "" ); if ( date == d ) printf "%s\0",$0 }' date=$1
+awk --posix 'BEGIN { RS="\0" } { d=$7; gsub( /^([^ ]*[ ]){7,7}/, "" ); if ( date == d ) printf "%s\0",$0 }' date=$1