mirror of
https://github.com/curl/curl.git
synced 2026-07-22 22:17:18 +03:00
logmsg already appends '\n'
This commit is contained in:
parent
50b3545ada
commit
660c86ce95
1 changed files with 3 additions and 3 deletions
|
|
@ -678,9 +678,9 @@ int main(int argc, char *argv[])
|
|||
}
|
||||
else {
|
||||
error = ERRNO;
|
||||
logmsg("fopen() failed with error: %d %s\n", error, strerror(error));
|
||||
logmsg("Error opening file: %s\n", pidname);
|
||||
logmsg("Couldn't write pid file\n");
|
||||
logmsg("fopen() failed with error: %d %s", error, strerror(error));
|
||||
logmsg("Error opening file: %s", pidname);
|
||||
logmsg("Couldn't write pid file");
|
||||
sclose(sock);
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue