mailing list of musl libc
 help / color / mirror / code / Atom feed
57c77757d0e1255e28fcf7d75f03aea8804b5106 blob 359 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
 
#include <syslog.h>
#include <stdarg.h>

void __vsyslog(int, const char *, va_list);

void __syslog_chk(int priority, int flag, const char *message, ...)
{
	va_list ap;
	va_start(ap, message);
	__vsyslog(priority, message, ap);
	va_end(ap);
}

void __vsyslog_chk(int priority, int flag, const char *message, va_list ap)
{
	__vsyslog(priority, message, ap);
}
debug log:

solving 57c7775 ...
found 57c7775 in https://inbox.vuxu.org/musl/1434509291-28997-1-git-send-email-josiahw@gmail.com/

applying [1/1] https://inbox.vuxu.org/musl/1434509291-28997-1-git-send-email-josiahw@gmail.com/
diff --git a/src/compat/syslog_chk.c b/src/compat/syslog_chk.c
new file mode 100644
index 0000000..57c7775

Checking patch src/compat/syslog_chk.c...
Applied patch src/compat/syslog_chk.c cleanly.

index at:
100644 57c77757d0e1255e28fcf7d75f03aea8804b5106	src/compat/syslog_chk.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).