aboutsummaryrefslogtreecommitdiff
path: root/sysklogd
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-02-17 14:28:53 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-02-17 14:28:53 +0000
commitcb448fe01bbe75ef31c3190e8b63b0e1a320ffb4 (patch)
tree9757477193c1b8f3be9a772cabfb1ef92639240e /sysklogd
parentffae845cfd0a0b9872827d806984841d4cfee104 (diff)
downloadbusybox-w32-cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4.tar.gz
busybox-w32-cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4.tar.bz2
busybox-w32-cb448fe01bbe75ef31c3190e8b63b0e1a320ffb4.zip
libbb: introduce and use xrename and rename_or_warn.
Diffstat (limited to 'sysklogd')
-rw-r--r--sysklogd/syslogd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysklogd/syslogd.c b/sysklogd/syslogd.c
index c6e057138..dc5e6250a 100644
--- a/sysklogd/syslogd.c
+++ b/sysklogd/syslogd.c
@@ -344,10 +344,10 @@ static void log_locally(time_t now, char *msg)
344 sprintf(newFile, "%s.%d", G.logFilePath, i); 344 sprintf(newFile, "%s.%d", G.logFilePath, i);
345 if (i == 0) break; 345 if (i == 0) break;
346 sprintf(oldFile, "%s.%d", G.logFilePath, --i); 346 sprintf(oldFile, "%s.%d", G.logFilePath, --i);
347 rename(oldFile, newFile); 347 xrename(oldFile, newFile);
348 } 348 }
349 /* newFile == "f.0" now */ 349 /* newFile == "f.0" now */
350 rename(G.logFilePath, newFile); 350 xrename(G.logFilePath, newFile);
351 fl.l_type = F_UNLCK; 351 fl.l_type = F_UNLCK;
352 fcntl(G.logFD, F_SETLKW, &fl); 352 fcntl(G.logFD, F_SETLKW, &fl);
353 close(G.logFD); 353 close(G.logFD);