diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-01-09 20:29:26 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-01-09 20:37:47 +0000 |
commit | 355bf01c828af16c47ab52bccb9ade769f8bf158 (patch) | |
tree | b5179d0500cd718eed9a30904c33867ccd1d6a3c /lib/krb5.c | |
parent | 99e71e6a847a72b3e919b1bbaf42963536592913 (diff) | |
download | curl-355bf01c828af16c47ab52bccb9ade769f8bf158.tar.gz |
gssapi: Remove need for duplicated GSS_C_NT_HOSTBASED_SERVICE definitions
Better code reuse and consistency in calls to gss_import_name().
Diffstat (limited to 'lib/krb5.c')
-rw-r--r-- | lib/krb5.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/lib/krb5.c b/lib/krb5.c index a0d7bb4f0..f0cb3f196 100644 --- a/lib/krb5.c +++ b/lib/krb5.c @@ -2,7 +2,7 @@ * * Copyright (c) 1995, 1996, 1997, 1998, 1999, 2013 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). - * Copyright (c) 2004 - 2014 Daniel Stenberg + * Copyright (c) 2004 - 2015 Daniel Stenberg * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -34,13 +34,7 @@ #include "curl_setup.h" -#ifndef CURL_DISABLE_FTP -#ifdef HAVE_GSSAPI - -#ifdef HAVE_OLD_GSSMIT -#define GSS_C_NT_HOSTBASED_SERVICE gss_nt_service_name -#define NCOMPAT 1 -#endif +#if defined(HAVE_GSSAPI) && !defined(CURL_DISABLE_FTP) #ifdef HAVE_NETDB_H #include <netdb.h> @@ -335,5 +329,4 @@ struct Curl_sec_client_mech Curl_krb5_client_mech = { krb5_decode }; -#endif /* HAVE_GSSAPI */ -#endif /* CURL_DISABLE_FTP */ +#endif /* HAVE_GSSAPI && !CURL_DISABLE_FTP */ |