ntohs -> htons (they produce the same output, but still)

This commit is contained in:
ValdikSS 2017-12-21 23:50:07 +03:00
parent 23babdc8fa
commit ccd21a4281
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ int main(int argc, char *argv[]) {
if (dns_port != 53) {
add_filter_str(IPPROTO_UDP, dns_port);
}
dns_port = ntohs(dns_port);
dns_port = htons(dns_port);
break;
case 'v':
do_dns_verb = 1;