From: Tilghman Lesher Date: Wed, 16 Jul 2008 00:52:48 +0000 (+0000) Subject: Fix rotate strategy X-Git-Tag: 1.6.2.0-beta1~1673 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e9bd35a0fe59d784592628fca465526a744a469f;p=thirdparty%2Fasterisk.git Fix rotate strategy (Closes issue #13086) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@131166 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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);