aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-11-15 13:02:31 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-11-15 13:15:02 +0000
commit2e16100609bb57c026c9ebd14aef23e4b356f8a8 (patch)
treef05868feb821c987a13cd5ceec1d353b4863210e
parentd54b551f6c3ff66b7d2f04bd9780295ae7e454ce (diff)
urldata: Don't define sec_complete when no GSS-API support present
This variable is only used with HAVE_GSSAPI is defined by the FTP code so let's place the definition with the other GSS-API based variables.
-rw-r--r--lib/urldata.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index f708a74a7..f5e8a783f 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -973,8 +973,8 @@ struct connectdata {
char *te; /* TE: request header */
} allocptr;
- int sec_complete; /* if Kerberos is enabled for this connection */
#ifdef HAVE_GSSAPI
+ int sec_complete; /* if Kerberos is enabled for this connection */
enum protection_level command_prot;
enum protection_level data_prot;
enum protection_level request_data_prot;