extual changes un UNAME string

This commit is contained in:
Thomas Ries
2005-01-08 10:41:46 +00:00
parent dc25a0c0ec
commit bf30639114
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -174,7 +174,8 @@ void log_tcp_connect(void) {
INFO("Rejected DEBUG TCP connection");
} else {
debug_fd=accept(debug_listen_fd, NULL, NULL);
INFO("Accepted DEBUG TCP connection [fd=%i] ("UNAME")", debug_fd);
INFO("Accepted DEBUG TCP connection [fd=%i]", debug_fd);
INFO(PACKAGE"-"VERSION"-"BUILDSTR" "UNAME);
}
}
+2 -2
View File
@@ -185,7 +185,7 @@ int main (int argc, char *argv[])
/*
* Init stuff
*/
INFO(PACKAGE"-"VERSION"-"BUILDSTR"-"UNAME" starting up");
INFO(PACKAGE"-"VERSION"-"BUILDSTR" "UNAME" starting up");
/* read the config file */
if (read_config(configfile, config_search) == STS_FAILURE) exit(1);
@@ -258,7 +258,7 @@ int main (int argc, char *argv[])
*/
log_set_silence(configuration.silence_log);
INFO(PACKAGE"-"VERSION"-"BUILDSTR"-"UNAME" started");
INFO(PACKAGE"-"VERSION"-"BUILDSTR" "UNAME" started");
/*
* Main loop