commit 01ed0dac83ed27faf5e8dc90c893b1cd0e8a917f
Author:     Hiltjo Posthuma <[email protected]>
AuthorDate: Mon Mar 5 00:56:24 2018 +0100
Commit:     Laslo Hunhold <[email protected]>
CommitDate: Mon Mar 5 01:00:50 2018 +0100

    util: don't initialize server, it's already done in main()
    
    ... this removes a stupid compiler warning too.

diff --git a/LICENSE b/LICENSE
index a468f28..8d6d827 100644
--- a/LICENSE
+++ b/LICENSE
@@ -5,7 +5,7 @@ Copyright 2016-2018 Laslo Hunhold <[email protected]>
 Copyright 2004 Ted Unangst <[email protected]>
 Copyright 2004 Todd C. Miller <[email protected]>
 Copyright 2008 Otto Moerbeek <[email protected]>
-Copyright 2017 Hiltjo Posthuma <[email protected]>
+Copyright 2017-2018 Hiltjo Posthuma <[email protected]>
 Copyright 2017-2018 Quentin Rameau <[email protected]>
 Copyright 2018 Josuah Demangeon <[email protected]>
 
diff --git a/util.c b/util.c
index d3db040..332a637 100644
--- a/util.c
+++ b/util.c
@@ -12,7 +12,7 @@
 #include "util.h"
 
 char *argv0;
-struct server s = { 0 };
+struct server s;
 
 static void
 verr(const char *fmt, va_list ap)

Reply via email to