mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-10 13:04:23 +01:00
Adjust to GNU coding standards
-- A variable definition with initialization shall have only one variable per type.
This commit is contained in:
parent
58004340cc
commit
550983f8fb
@ -817,8 +817,13 @@ static int
|
|||||||
connect_server( const char *server, ushort port, unsigned int flags,
|
connect_server( const char *server, ushort port, unsigned int flags,
|
||||||
struct http_srv *srv )
|
struct http_srv *srv )
|
||||||
{
|
{
|
||||||
int sock=-1, srvindex, srvcount=0, connected=0, hostfound=0, chosen=-1;
|
int sock = -1;
|
||||||
|
int srvcount = 0;
|
||||||
|
int connected = 0;
|
||||||
|
int hostfound = 0;
|
||||||
|
int chosen = -1;
|
||||||
struct srventry *srvlist = NULL;
|
struct srventry *srvlist = NULL;
|
||||||
|
int srvindex;
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
unsigned long inaddr;
|
unsigned long inaddr;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user