Includes commits from these pull requests:

	#188

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
This commit is contained in:
Johannes Schindelin 2018-10-18 14:03:34 +02:00 коммит произвёл Victoria Dye
Родитель 245ca608e0 5baeb87dcd
Коммит 357329cf8e
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -777,11 +777,12 @@ error:
for (i = 0; i < data->want_obj.nr; i++) {
struct object *o = data->want_obj.objects[i].item;
if (!is_our_ref(o, data->allow_uor)) {
warning("git upload-pack: not our ref %s",
oid_to_hex(&o->oid));
packet_writer_error(&data->writer,
"upload-pack: not our ref %s",
oid_to_hex(&o->oid));
die("git upload-pack: not our ref %s",
oid_to_hex(&o->oid));
exit(1);
}
}
}