From: wessels <> Date: Mon, 8 Jun 1998 23:00:06 +0000 (+0000) Subject: update time when creating directories X-Git-Tag: SQUID_3_0_PRE1~3161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9ca759c58115945b63fcfb818329ecd813906061;p=thirdparty%2Fsquid.git update time when creating directories --- diff --git a/src/store_dir.cc b/src/store_dir.cc index 0955a6ffe9..47b70a729b 100644 --- a/src/store_dir.cc +++ b/src/store_dir.cc @@ -1,6 +1,6 @@ /* - * $Id: store_dir.cc,v 1.70 1998/05/30 19:43:18 rousskov Exp $ + * $Id: store_dir.cc,v 1.71 1998/06/08 17:00:06 wessels Exp $ * * DEBUG: section 47 Store Directory Routines * AUTHOR: Duane Wessels @@ -127,6 +127,7 @@ storeCreateDirectory(const char *path, int should_exist) { int created = 0; struct stat st; + getCurrentTime(); if (0 == stat(path, &st)) { if (S_ISDIR(st.st_mode)) { debug(20, should_exist ? 3 : 1) ("%s exists\n", path);