always use two digits in file name

git-svn-id: https://zeitsenke.de/svn/SyncEvolution/trunk@165 15ad00c4-1369-45f4-8270-35d70d36bdcd
This commit is contained in:
Patrick Ohly 2006-06-19 16:23:07 +00:00
parent 671fa4c689
commit 70074a9199
1 changed files with 3 additions and 3 deletions

View File

@ -124,9 +124,9 @@ public:
<< setfill('0')
<< setw(4) << tm->tm_year + 1900 << "-"
<< setw(2) << tm->tm_mon << "-"
<< tm->tm_mday << "-"
<< tm->tm_hour << "-"
<< tm->tm_min;
<< setw(2) << tm->tm_mday << "-"
<< setw(2) << tm->tm_hour << "-"
<< setw(2) << tm->tm_min;
int seq = 0;
while (true) {
stringstream path;