Move start_stop_daemon to debianutils.
[oweals/busybox.git] / shell / msh.c
index 53f643de12ae96e709ef5aa86c5fce77b42455b6..a142c451af8b95761781aabe1dba3e68bda0b7bc 100644 (file)
@@ -3,12 +3,12 @@
  * Minix shell port for busybox
  *
  * This version of the Minix shell was adapted for use in busybox
- * by Erik Andersen <andersee@debian.org>
+ * by Erik Andersen <andersen@codepoet.org>
  *
  * - backtick expansion did not work properly
  *   Jonas Holmberg <jonas.holmberg@axis.com>
  *   Robert Schwebel <r.schwebel@pengutronix.de>
- *   Erik Andersen <andersee@debian.org>
+ *   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
@@ -2838,7 +2838,7 @@ char *c, **v, **envp;
 #ifdef CONFIG_FEATURE_SH_STANDALONE_SHELL
        char *name = c;
 #ifdef CONFIG_FEATURE_SH_APPLETS_ALWAYS_WIN
-       name = get_last_path_component(name);
+       name = bb_get_last_path_component(name);
 #endif
        optind = 1;
        if (find_applet_by_name(name)) {
@@ -2876,7 +2876,7 @@ char *c, **v, **envp;
                        return("no Shell");
 
                case ENOMEM:
-                       return((char*)memory_exhausted);
+                       return((char*)bb_msg_memory_exhausted);
 
                case E2BIG:
                        return("argument list too long");
@@ -3883,7 +3883,7 @@ int quoted;
                ;
        if (i < 0) {
                closepipe(pf);
-               err((char*)memory_exhausted);
+               err((char*)bb_msg_memory_exhausted);
                return(0);
        }
        if (i != 0) {