Fix a naming problem (actally a cut'n'paste problem)

This commit is contained in:
Gregory Nutt 2014-10-08 20:17:18 -06:00
parent bbc658930a
commit 6d28596fa5
2 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,7 @@
# Add the internal C files to the build
CSRCS += fs_vsyslog.c fs_lowsyslog.c fs_setlogmask.c
CSRCS += fs_syslog.c fs_lowsyslog.c fs_setlogmask.c
ifeq ($(CONFIG_SYSLOG),y)
CSRCS += fs_syslogstream.c

View File

@ -1,5 +1,5 @@
/****************************************************************************
* libc/syslog/fs_vsyslog.c
* libc/syslog/fs_syslog.c
*
* Copyright (C) 2007-2009, 2011-2014 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
@ -151,18 +151,18 @@ int vsyslog(int priority, FAR const char *fmt, va_list ap)
}
/****************************************************************************
* Name: lowsyslog
* Name: syslog
****************************************************************************/
int lowsyslog(int priority, FAR const char *fmt, ...)
int syslog(int priority, FAR const char *fmt, ...)
{
va_list ap;
int ret;
/* Let lowvsyslog do the work */
/* Let vsyslog do the work */
va_start(ap, fmt);
ret = lowvsyslog(priority, fmt, ap);
ret = vsyslog(priority, fmt, ap);
va_end(ap);
return ret;