commit be8d6523f57794ac75b83c622997065380f05463 from: Omar Polo via: Thomas Adam date: Thu Apr 25 14:57:52 2024 UTC got-notify-http: use fatalx since errno is useless here commit - c24e2d2e71abf0ac4feb95dc4f238d454819fed9 commit + be8d6523f57794ac75b83c622997065380f05463 blob - dd22bd86ae1dcd235e42d96a4df407c3dd81bbf1 blob + 1bcbb0ab4d4aa90e596c6d75bbb028c024a9d88b --- gotd/libexec/got-notify-http/got-notify-http.c +++ gotd/libexec/got-notify-http/got-notify-http.c @@ -1045,5 +1045,5 @@ main(int argc, char **argv) if (response_code >= 200 && response_code < 300) return 0; - fatal("request failed with code %d", response_code); + fatalx("request failed with code %d", response_code); }