Supress warnings. Correct spelling.
[umurmur.git] / src / main.c
index c84e1a80545a07b15c8349a9b32933da26cbd45f..344f6bd88af326437ac54cda453294293ff6f487 100644 (file)
@@ -89,7 +89,7 @@ void lockfile(const char *pidfile)
        }
 
        snprintf(str,16,"%d\n", getpid());
-       write(lfp, str, strlen(str)); /* record pid to lockfile */
+       (void)write(lfp, str, strlen(str)); /* record pid to lockfile */
        Log_info("PID-file: %s", pidfile);
 
        /* If uMurmur ever starts to fork()+exec(), we don't want it to
@@ -195,11 +195,11 @@ void daemonize()
                close(i); /* close all descriptors */
        
        i = open("/dev/null",O_RDWR);
-       dup(i);
-       dup(i);
+       (void)dup(i);
+       (void)dup(i);
        
        umask(027); /* set newly created file permissions */
-       chdir("/");
+       (void)chdir("/");
                
 }
 
@@ -219,7 +219,8 @@ void setscheduler()
 
 void printhelp()
 {
-       printf("uMurmur version %s. Mumble protocol %d.%d.%d\n", UMURMUR_VERSION, PROTVER_MAJOR, PROTVER_MINOR, PROTVER_PATCH);
+       printf("uMurmur version %s ('%s'). Mumble protocol %d.%d.%d\n", UMURMUR_VERSION,
+              UMURMUR_CODENAME, PROTVER_MAJOR, PROTVER_MINOR, PROTVER_PATCH);
        printf("Usage: umurmurd [-d] [-r] [-h] [-p <pidfile>] [-t] [-c <conf file>] [-a <addr>] [-b <port>]\n");
        printf("       -d             - Do not daemonize - run in foreground.\n");
 #ifdef POSIX_PRIORITY_SCHEDULING