Renamed log_trace() to log()

This commit is contained in:
2016-08-10 20:21:54 +03:00
parent 65b923cba8
commit dcd7a46d0a
10 changed files with 100 additions and 97 deletions

View File

@@ -1,7 +1,7 @@
#ifndef CONFPARSER_H
#define CONFPARSER_H
#include "log_trace.h"
#include "log.h"
#define MAXPATHSIZE 256
#define HOSTNAMESIZE 128
@@ -39,8 +39,8 @@ struct conf_table {
};
extern struct conf_table conf;
extern int confparse();
extern void confexport();
extern int confparse(void);
extern void confexport(void);
#endif /* CONFPARSER_H */