mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
[PATCH] Rename daemon.c's lognotice() to loginfo()
The syslog code logs with severity LOG_INFO in the loginfo() function, so make things less confusing. Signed-off-by: Petr Baudis <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
parent
9048fe1c50
commit
da38641d7c
6
daemon.c
6
daemon.c
@ -59,7 +59,7 @@ void logerror(const char *err, ...)
|
||||
va_end(params);
|
||||
}
|
||||
|
||||
void lognotice(const char *err, ...)
|
||||
void loginfo(const char *err, ...)
|
||||
{
|
||||
va_list params;
|
||||
if (!verbose)
|
||||
@ -72,7 +72,7 @@ void lognotice(const char *err, ...)
|
||||
|
||||
static int upload(char *dir, int dirlen)
|
||||
{
|
||||
lognotice("Request for '%s'", dir);
|
||||
loginfo("Request for '%s'", dir);
|
||||
if (chdir(dir) < 0) {
|
||||
logerror("Cannot chdir('%s'): %s", dir, strerror(errno));
|
||||
return -1;
|
||||
@ -284,7 +284,7 @@ static void handle(int incoming, struct sockaddr *addr, int addrlen)
|
||||
|
||||
port = sin6_addr->sin6_port;
|
||||
}
|
||||
lognotice("Connection from %s:%d", addrbuf, port);
|
||||
loginfo("Connection from %s:%d", addrbuf, port);
|
||||
|
||||
exit(execute());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user