just fixing some typos in some comments and an error string

This commit is contained in:
kris 2007-09-19 19:43:23 +00:00
parent e75780b503
commit 48dec59470
3 changed files with 5 additions and 5 deletions

View file

@ -1,8 +1,8 @@
/***************************************************************************
* scanengine.cc -- Includes much of the "engine" functions for scanning, *
* scan_engine.cc -- Includes much of the "engine" functions for scanning, *
* such as pos_scan and ultra_scan. It also includes dependant functions *
* such as those for collectiong SYN/connect scan responses. *
* such as those for collecting SYN/connect scan responses. *
* *
***********************IMPORTANT NMAP LICENSE TERMS************************
* *

View file

@ -1,8 +1,8 @@
/***************************************************************************
* scanengine.h -- Includes much of the "engine" functions for scanning, *
* scan_engine.h -- Includes much of the "engine" functions for scanning, *
* such as pos_scan and ultra_scan. It also includes dependant functions *
* such as those for collectiong SYN/connect scan responses. *
* such as those for collecting SYN/connect scan responses. *
* *
***********************IMPORTANT NMAP LICENSE TERMS************************
* *

View file

@ -292,7 +292,7 @@ int numberlist2array(char *expr, u16 *dest, int destsize, char **errorstr, u16 m
errorstr = &errbogus;
if (destsize % 2 != 0) {
*errorstr = "Bogus call to numerlist2array() -- destsize must be a multiple of 2";
*errorstr = "Bogus call to numberlist2array() -- destsize must be a multiple of 2";
return -1;
}