summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-15 10:57:05 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-04-15 10:57:05 +0000
commit6b18f4241216eee3ea96ac807509bbd246a534f5 (patch)
tree87cf77340dec3ec70f30c6480c296dff534c5143 /include
parenteabced13a91d3cede36c2d60502a962c3486b210 (diff)
- Forward-port -r1741 [Fixed logfiles not getting reopened on /rehash]
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1831 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'include')
-rw-r--r--include/log.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/log.h b/include/log.h
index 76e0767..d5502a6 100644
--- a/include/log.h
+++ b/include/log.h
@@ -39,8 +39,9 @@ enum log_type {
LOG_TYPE_LAST
};
-extern int log_add_file(enum log_type, size_t, const char *);
-extern void log_close_all(void);
+extern void log_set_file(enum log_type, size_t, const char *);
+extern void log_del_all(void);
+extern void log_reopen_all(void);
extern void ilog(enum log_type, const char *, ...) AFP(2,3);
#endif /* INCLUDED_s_log_h */