commit 911f5cd53ebab634350347c2294f801566a7149a from: Stefan Sperling via: Thomas Adam date: Thu Dec 08 22:23:03 2022 UTC remove bogus abort() call from gotsh echo_error() commit - 69e99a59dba745690401dcbc29c9931c98c30036 commit + 911f5cd53ebab634350347c2294f801566a7149a blob - a4416fcbce8dd3e76d89bda1f9a84447af2ce030 blob + f5547423081feef64d243f4fa9151ceaec1ce8c6 --- lib/serve.c +++ lib/serve.c @@ -265,8 +265,7 @@ echo_error(const struct got_error *err, int outfd, int */ buf[0] = 'E'; buf[1] = 'R'; buf[2] = 'R'; buf[3] = ' '; buf[4] = '\0'; len = strlcat(buf, err->msg, sizeof(buf)); - err = got_pkt_writepkt(outfd, buf, len, chattygot); - abort(); + got_pkt_writepkt(outfd, buf, len, chattygot); } static const struct got_error *