]> git.ipfire.org Git - thirdparty/git.git/blobdiff - fetch-negotiator.c
config.mak.uname: remove unused NEEDS_SSL_WITH_CURL flag
[thirdparty/git.git] / fetch-negotiator.c
index 0a1357dc9d55b34992ff5a6f65e3bdf77375465e..57ed5784e1468aa661d59446273ba9cbbad760ca 100644 (file)
@@ -2,6 +2,7 @@
 #include "fetch-negotiator.h"
 #include "negotiator/default.h"
 #include "negotiator/skipping.h"
+#include "negotiator/noop.h"
 #include "repository.h"
 
 void fetch_negotiator_init(struct repository *r,
@@ -13,6 +14,10 @@ void fetch_negotiator_init(struct repository *r,
                skipping_negotiator_init(negotiator);
                return;
 
+       case FETCH_NEGOTIATION_NOOP:
+               noop_negotiator_init(negotiator);
+               return;
+
        case FETCH_NEGOTIATION_DEFAULT:
        default:
                default_negotiator_init(negotiator);