Signed-off-by: Jan Engelhardt <jengelh@xxxxxxxxxx> --- extensions/libxt_string.c | 9 ++------- 1 files changed, 2 insertions(+), 7 deletions(-) diff --git a/extensions/libxt_string.c b/extensions/libxt_string.c index 257f5f8..365019f 100644 --- a/extensions/libxt_string.c +++ b/extensions/libxt_string.c @@ -230,13 +230,8 @@ print_hex_string(const char *str, const unsigned short int len) unsigned int i; /* start hex block */ printf(" \"|"); - for (i=0; i < len; i++) { - /* see if we need to prepend a zero */ - if ((unsigned char) str[i] <= 0x0F) - printf("0%x", (unsigned char) str[i]); - else - printf("%x", (unsigned char) str[i]); - } + for (i=0; i < len; i++) + printf("%02x", (unsigned char)str[i]); /* close hex block */ printf("|\""); } -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html