From a8206adcade44928ba4e55cd9220a11b5b92035d Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Tue, 22 Jul 2014 11:01:04 +0200
Subject: [PATCH] test1013.pl: remove SPNEGO/GSS-API tweaks

No longer necessary after Michael Osipov's rework
---
 tests/libtest/test1013.pl | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl
index 37f98d74cf..e2473c93bb 100755
--- a/tests/libtest/test1013.pl
+++ b/tests/libtest/test1013.pl
@@ -23,7 +23,7 @@ $curl_protocols =~ /\w+: (.*)$/;
 @curl = split / /,$1;
 
 # These features are not supported by curl-config
-@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate|SPNEGO)$/i, @curl);
+@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv|GSS-Negotiate)$/i, @curl);
 @curl = sort @curl;
 
 # Read the output of curl-config
@@ -33,9 +33,7 @@ while( <CURLCONFIG> )
 {
     chomp;
     # ignore curl-config --features not in curl's feature list
-    if(!/^(GSS-API)$/) {
-        push @curl_config, lc($_);
-    }
+    push @curl_config, lc($_);
 }
 close CURLCONFIG;
 
-- 
GitLab