git: 9front

Download patch

ref: a70b291a0889b613961dede195ac48b810f0b7f4
parent: 830d1397ad4512a15f23346d7d4949e5be4c84bf
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Nov 26 18:47:48 EST 2022

git: add support for another signed message format

--- a/sys/src/cmd/git/pack.c
+++ b/sys/src/cmd/git/pack.c
@@ -885,6 +885,7 @@
 			/* just drop it */
 			if((t = strstr(p, "-----END PGP SIGNATURE-----")) == nil)
 			if((t = strstr(p, "-----END SSH SIGNATURE-----")) == nil)
+			if((t = strstr(p, "-----END SIGNED MESSAGE-----")) == nil)
 				sysfatal("malformed gpg signature");
 			np -= t - p;
 			p = t;
--