From: Michael R Sweet Date: Tue, 2 Sep 2025 19:52:20 +0000 (-0400) Subject: Report results of ippValidateAttributes when showing the contents of the IPP X-Git-Tag: v2.4.13~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0747fd6c6873593b62ae5c538230239d02c8b09a;p=thirdparty%2Fcups.git Report results of ippValidateAttributes when showing the contents of the IPP message. --- diff --git a/cups/testipp.c b/cups/testipp.c index db65a5ff61..eae8bb1676 100644 --- a/cups/testipp.c +++ b/cups/testipp.c @@ -895,7 +895,7 @@ main(int argc, /* I - Number of command-line arguments */ if (request) { - printf("\n%s:\n", argv[i]); + printf("\n%s: %s\n", argv[i], ippValidateAttributes(request) ? "OK" : cupsLastErrorString()); print_attributes(request, 4); ippDelete(request); }