Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/libbb/info_msg.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 815 by niro, Sat Sep 1 22:45:15 2007 UTC revision 816 by niro, Fri Apr 24 18:33:46 2009 UTC
# Line 7  Line 7 
7   * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.   * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8   */   */
9    
 #include <stdio.h>  
 #include <errno.h>  
 #include <string.h>  
 #include <stdlib.h>  
10  #include "libbb.h"  #include "libbb.h"
11    #include <syslog.h>
12    
13  void bb_info_msg(const char *s, ...)  void FAST_FUNC bb_info_msg(const char *s, ...)
14  {  {
15   va_list p;   va_list p;
16     /* va_copy is used because it is not portable
17     * to use va_list p twice */
18     va_list p2;
19    
20   va_start(p, s);   va_start(p, s);
21   bb_vinfo_msg(s, p);   va_copy(p2, p);
22     if (logmode & LOGMODE_STDIO) {
23     vprintf(s, p);
24     fputs(msg_eol, stdout);
25     }
26     if (ENABLE_FEATURE_SYSLOG && (logmode & LOGMODE_SYSLOG))
27     vsyslog(LOG_INFO, s, p2);
28     va_end(p2);
29   va_end(p);   va_end(p);
30  }  }

Legend:
Removed from v.815  
changed lines
  Added in v.816