Standardize protobuf "unable to unpack" warning messages.

This commit is contained in:
Todd C. Miller
2022-05-26 09:35:18 -06:00
parent 9ac42292d1
commit 38c6e1bffb
6 changed files with 6 additions and 6 deletions

View File

@@ -619,7 +619,7 @@ intercept_read(int fd, struct intercept_closure *closure)
unpack:
req = intercept_request__unpack(NULL, closure->len, closure->buf);
if (req == NULL) {
sudo_warnx("unable to unpack %s size %zu", "InterceptRequest",
sudo_warnx(U_("unable to unpack %s size %zu"), "InterceptRequest",
(size_t)closure->len);
goto done;
}