Commit a73b7c2f33901a30dd639921d1fb3f302778dec1

Nelson Elhage 2018-06-29T16:54:06

This error case is now unneeded

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/transports/smart_protocol.c b/src/transports/smart_protocol.c
index 948b93b..943ee75 100644
--- a/src/transports/smart_protocol.c
+++ b/src/transports/smart_protocol.c
@@ -70,12 +70,6 @@ int git_smart__store_refs(transport_smart *t, int flushes)
 			return -1;
 		}
 
-		if (pkt->type == GIT_PKT_PACK) {
-			giterr_set(GITERR_NET, "unexpected packfile");
-			git__free(pkt);
-			return -1;
-		}
-
 		if (pkt->type != GIT_PKT_FLUSH && git_vector_insert(refs, pkt) < 0)
 			return -1;