From: guy Date: Mon, 15 Jan 2007 11:15:54 +0000 (+0000) Subject: From Kevin Steves: get rid of extra leading spaces. X-Git-Tag: tcpdump-3.9.7~39 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/de18671f07102906f99c5c3a0ac3e68990b11704 From Kevin Steves: get rid of extra leading spaces. --- diff --git a/print-domain.c b/print-domain.c index af1523c0..b05bd3b2 100644 --- a/print-domain.c +++ b/print-domain.c @@ -21,7 +21,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-domain.c,v 1.89.2.6 2006-11-12 23:12:22 guy Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/print-domain.c,v 1.89.2.7 2007-01-15 11:15:54 guy Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -576,7 +576,7 @@ ns_print(register const u_char *bp, u_int length, int is_mdns) if (DNS_QR(np)) { /* this is a response */ - printf(" %d%s%s%s%s%s%s", + printf("%d%s%s%s%s%s%s", EXTRACT_16BITS(&np->id), ns_ops[DNS_OPCODE(np)], ns_resp[DNS_RCODE(np)], @@ -644,7 +644,7 @@ ns_print(register const u_char *bp, u_int length, int is_mdns) } else { /* this is a request */ - printf(" %d%s%s%s", EXTRACT_16BITS(&np->id), ns_ops[DNS_OPCODE(np)], + printf("%d%s%s%s", EXTRACT_16BITS(&np->id), ns_ops[DNS_OPCODE(np)], DNS_RD(np) ? "+" : "", DNS_CD(np) ? "%" : "");