util: don't initialize server, it's already done in main()
... this removes a stupid compiler warning too.
This commit is contained in:
parent
c8401c591f
commit
01ed0dac83
2 changed files with 2 additions and 2 deletions
2
LICENSE
2
LICENSE
|
@ -5,7 +5,7 @@ Copyright 2016-2018 Laslo Hunhold <dev@frign.de>
|
|||
Copyright 2004 Ted Unangst <tedu@openbsd.org>
|
||||
Copyright 2004 Todd C. Miller <Todd.Miller@courtesan.com>
|
||||
Copyright 2008 Otto Moerbeek <otto@drijf.net>
|
||||
Copyright 2017 Hiltjo Posthuma <hiltjo@codemadness.org>
|
||||
Copyright 2017-2018 Hiltjo Posthuma <hiltjo@codemadness.org>
|
||||
Copyright 2017-2018 Quentin Rameau <quinq@fifth.space>
|
||||
Copyright 2018 Josuah Demangeon <mail@josuah.net>
|
||||
|
||||
|
|
2
util.c
2
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)
|
||||
|
|
Loading…
Reference in a new issue