1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

sed -i 's/if ( /if (/g' *.cc *.h; sed -i 's/for ( /for (/g' *.cc *.h; sed -i 's/( /(/g' nmap_amigaos.h tcpip.h service_scan.cc

There's still quite a lot of code like this, nse_openssl.cc being most
messy IMHO. Also, I left out "if( something )" syntax.
This commit is contained in:
d33tah
2014-06-25 15:40:54 +00:00
parent 3e6e5b1c51
commit a80c90608c
14 changed files with 31 additions and 31 deletions

View File

@@ -1081,7 +1081,7 @@ static Hop *merge_hops(const struct sockaddr_storage *tag, Hop *a, Hop *b) {
p->parent = a;
else if (b != NULL)
p->parent = b;
for ( ; p != NULL; p = p->parent)
for (; p != NULL; p = p->parent)
p->tag = *tag;
return head.parent;