1
0
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:
luis
2013-03-29 12:44:51 +00:00
parent 5c9a2b54ce
commit f64b3fafe8
16 changed files with 714 additions and 714 deletions

View File

@@ -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