mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
GRRR no fprintf!
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@37402 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
app.c
2
app.c
@@ -1158,7 +1158,7 @@ enum AST_LOCK_RESULT ast_lock_path(const char *path)
|
|||||||
snprintf(fs, strlen(path) + 19, "%s/.lock-%08x", path, rand());
|
snprintf(fs, strlen(path) + 19, "%s/.lock-%08x", path, rand());
|
||||||
fd = open(fs, O_WRONLY | O_CREAT | O_EXCL, 0600);
|
fd = open(fs, O_WRONLY | O_CREAT | O_EXCL, 0600);
|
||||||
if (fd < 0) {
|
if (fd < 0) {
|
||||||
fprintf(stderr, "Unable to create lock file '%s': %s\n", path, strerror(errno));
|
ast_log(LOG_ERROR, "Unable to create lock file '%s': %s\n", path, strerror(errno));
|
||||||
return AST_LOCK_PATH_NOT_FOUND;
|
return AST_LOCK_PATH_NOT_FOUND;
|
||||||
}
|
}
|
||||||
close(fd);
|
close(fd);
|
||||||
|
|||||||
Reference in New Issue
Block a user