Patch from vodz:
[oweals/busybox.git] / libbb / vherror_msg.c
index 67db17fe4ea3b11f6724c83035ca593bdaaadd61..ffdfd5283918e77bddffb50768f0e876c16151aa 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
 #include "libbb.h"
 
 
-extern void vherror_msg(const char *s, va_list p)
+extern void bb_vherror_msg(const char *s, va_list p)
 {
        if(s == 0)
                s = "";
-       verror_msg(s, p);
+       bb_verror_msg(s, p);
        if (*s)
                fputs(": ", stderr);
        herror("");