Codebase list pgpdump / 8b387ee
indicate unknown sigtype value is displayed in hex All other sigtype values are shown with a leading 0x. When an unknown sigtype is encountered, it doesn't have the leading 0x, which is confusing. This change makes the output more consistent. Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net> Daniel Kahn Gillmor 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
9595 printf("Third-Party Confirmation signature(0x50).");
9696 break;
9797 default:
98 printf("unknown(%02x)", type);
98 printf("unknown(0x%02x)", type);
9999 break;
100100 }
101101 printf("\n");