From e9bd35a0fe59d784592628fca465526a744a469f Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Wed, 16 Jul 2008 00:52:48 +0000 Subject: [PATCH] Fix rotate strategy (Closes issue #13086) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@131166 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/logger.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/logger.c b/main/logger.c index 18a864c0d6..60a464adbb 100644 --- a/main/logger.c +++ b/main/logger.c @@ -533,19 +533,19 @@ static int rotate_file(const char *filename) for (which = 0; which < ARRAY_LEN(suffixes); which++) { snprintf(new, sizeof(new), "%s.%d%s", filename, x, suffixes[which]); fd = open(new, O_RDONLY); - if (fd > -1) + if (fd > -1) { close(fd); - else { found = 1; break; } } - if (!found) + if (!found) { break; + } } /* Found an empty slot */ - for (y = x; y > -1; y--) { + for (y = x; y > 0; y--) { for (which = 0; which < ARRAY_LEN(suffixes); which++) { snprintf(old, sizeof(old), "%s.%d%s", filename, y - 1, suffixes[which]); fd = open(old, O_RDONLY);