diff options
author | venaas <venaas> | 2008-07-25 11:07:46 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-07-25 11:07:46 +0000 |
commit | 429f148947a0b044cf799730ce2b11f8c6f5bdbe (patch) | |
tree | b8dfd6a5e5151bbfc588cfc6cf1af22068644465 | |
parent | d12f4ae48c8c1f54ef7eecf2a094aa72d14b2c3e (diff) |
removing harmless compiler warning
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/branches/release-1.1@327 e88ac4ed-0b26-0410-9574-a7f39faa03bf
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 935b192..b17464a 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -142,7 +142,7 @@ static int verify_cb(int ok, X509_STORE_CTX *ctx) { int resolvepeer(struct clsrvconf *conf, int ai_flags) { struct addrinfo hints, *addrinfo, *res; char *slash, *s; - int plen; + int plen = 0; slash = conf->host ? strchr(conf->host, '/') : NULL; if (slash) { |