From d78a021a3fceb86c8feccc4d8b90662bf4461e8d Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Tue, 3 Jul 2001 19:35:46 +0000 Subject: [PATCH] (send_via_proxy): initialize a variable to make gcc's optimizer happy git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10280 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/send_to_kdc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/send_to_kdc.c b/lib/krb5/send_to_kdc.c index 1312550cc..75e93f80b 100644 --- a/lib/krb5/send_to_kdc.c +++ b/lib/krb5/send_to_kdc.c @@ -248,7 +248,7 @@ send_via_proxy (krb5_context context, struct addrinfo hints; struct addrinfo *ai, *a; int ret; - int s; + int s = -1; char portstr[NI_MAXSERV]; if (proxy == NULL)