Patch from vodz:
[oweals/busybox.git] / libbb / syslog_msg_with_name.c
index 6474da45937af9defe2e74c2d7553ab620d131ce..4b530416a8760225a517224d7f7aed0e34d1a11c 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
+ * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -32,7 +32,7 @@ void syslog_msg_with_name(const char *name, int facility, int pri, const char *m
 
 void syslog_msg(int facility, int pri, const char *msg)
 {
-       syslog_msg_with_name(applet_name, facility, pri, msg);
+       syslog_msg_with_name(bb_applet_name, facility, pri, msg);
 }
 
 /* END CODE */