mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2024-11-03 04:17:20 -05:00
Escape log entries in access log (close: #1916)
svn path=/icecast/trunk/log/; revision=18756
This commit is contained in:
parent
40e087090e
commit
6a815a52d4
@ -588,7 +588,7 @@ void log_write_direct(int log_id, const char *fmt, ...)
|
||||
now = time(NULL);
|
||||
|
||||
_lock_logger();
|
||||
vsnprintf(line, LOG_MAXLINELEN, fmt, ap);
|
||||
__vsnprintf(line, LOG_MAXLINELEN, fmt, ap);
|
||||
if (_log_open (log_id))
|
||||
{
|
||||
int len = create_log_entry (log_id, "", line);
|
||||
|
@ -39,6 +39,6 @@ void log_shutdown(void);
|
||||
|
||||
void log_write(int log_id, unsigned priority, const char *cat, const char *func,
|
||||
const char *fmt, ...);
|
||||
void log_write_direct(int log_id, const char *fmt, ...) __attribute__ ((format (printf, 2, 3)));
|
||||
void log_write_direct(int log_id, const char *fmt, ...);
|
||||
|
||||
#endif /* __LOG_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user