From: Michael Tremer Date: Fri, 18 Oct 2024 15:00:31 +0000 (+0000) Subject: snapshots: Overlayfs does not like colons in the directory name X-Git-Tag: 0.9.30~1012 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1fea105d777e2ae6ff6825947fa4f723ca56b2ab;p=pakfire.git snapshots: Overlayfs does not like colons in the directory name Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/snapshot.c b/src/libpakfire/snapshot.c index 599936b1f..80c2f5c6c 100644 --- a/src/libpakfire/snapshot.c +++ b/src/libpakfire/snapshot.c @@ -459,7 +459,7 @@ int pakfire_snapshot_make(struct pakfire_snapshot** snapshot, struct pakfire_ctx* ctx = pakfire_ctx(pakfire); // Store the current time - r = pakfire_strftime_now(time, "%Y-%m-%d-%H:%M:%S"); + r = pakfire_strftime_now(time, "%Y-%m-%d-%H%M%S"); if (r < 0) goto ERROR;