From 434c40986d1f3d2e2a3da49a6e1528aad0daa0b8 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 14 Oct 2006 20:31:33 +0000 Subject: [PATCH] Use the MAX_RENAMES_DIGITS define in the relevant snprintf(). --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index 0887e7fc..632a242c 100644 --- a/util.c +++ b/util.c @@ -359,7 +359,7 @@ int robust_unlink(const char *fname) /* start where the last one left off to reduce chance of clashes */ start = counter; do { - snprintf(&path[pos], 4, "%03d", counter); + snprintf(&path[pos], MAX_RENAMES_DIGITS+1, "%03d", counter); if (++counter >= MAX_RENAMES) counter = 1; } while ((rc = access(path, 0)) == 0 && counter != start); -- 2.34.1