mirror of
https://github.com/nmap/nmap.git
synced 2025-12-29 02:49:01 +00:00
Merge r27122 from nmap-npingchanges: Changed names for output funtions. outPrint() -> nping_print(); outFatal() -> nping_fatal() ; outError() -> nping_warning(). This change is completely irrelevant but I personally hate the names I chose the first time and I thought I'd change them to something better.
This commit is contained in:
@@ -129,13 +129,13 @@ int error(const char *str, ...)
|
||||
int pfatal(const char *str, ...)
|
||||
__attribute__ ((format (printf, 1, 2)));
|
||||
|
||||
int outFatal(int level, const char *str, ...)
|
||||
int nping_fatal(int level, const char *str, ...)
|
||||
__attribute__((format(printf, 2, 3)));
|
||||
|
||||
int outError(int level, const char *str, ...)
|
||||
int nping_warning(int level, const char *str, ...)
|
||||
__attribute__((format(printf, 2, 3)));
|
||||
|
||||
int outPrint(int level, const char *str, ...)
|
||||
int nping_print(int level, const char *str, ...)
|
||||
__attribute__((format(printf, 2, 3)));
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
Reference in New Issue
Block a user