Commit 74b94df3 74b94df3b81a1efb27fbf9895128a4fb48f929ef by Sergey Poznyakoff

Provide a replacement for vsyslog

1 parent 747036b7
...@@ -318,8 +318,8 @@ extern char *strsignal (int); ...@@ -318,8 +318,8 @@ extern char *strsignal (int);
318 ]) 318 ])
319 319
320 AC_REPLACE_FUNCS(fgetpwent getpass setenv snprintf strncasecmp \ 320 AC_REPLACE_FUNCS(fgetpwent getpass setenv snprintf strncasecmp \
321 strcasecmp strsignal vasprintf) 321 strcasecmp strsignal vasprintf vsyslog)
322 AC_CHECK_FUNCS(mkstemp sigaction sysconf getdelim vsyslog setreuid \ 322 AC_CHECK_FUNCS(mkstemp sigaction sysconf getdelim setreuid \
323 setresuid seteuid vfork _exit) 323 setresuid seteuid vfork _exit)
324 324
325 AC_FUNC_SETVBUF_REVERSED 325 AC_FUNC_SETVBUF_REVERSED
......
1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 2003 Free Software Foundation, Inc.
3
4 GNU Mailutils is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
8
9 GNU Mailutils is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with GNU Mailutils; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
17
18 #ifdef HAVE_CONFIG_H
19 # include <config.h>
20 #endif
21
22 #include <mu_asprintf.h>
23
24 void
25 vsyslog (int pri, const char *fmt, va_list ap)
26 {
27 char *p;
28
29 vasprintf (&p, fmt, ap);
30 syslog (pri, "%s", p);
31 free (p);
32 }