update the changelog, prepatory to the 0.51 release. Please review
[oweals/busybox.git] / halt.c
diff --git a/halt.c b/halt.c
index c3e2523c041120cd101f8f43e1d1e62cf2a1b46a..e875d04f0cb8cdee48bfc9d434e97587738ccfce 100644 (file)
--- a/halt.c
+++ b/halt.c
@@ -28,7 +28,7 @@ extern int halt_main(int argc, char **argv)
 {
 #ifdef BB_FEATURE_LINUXRC
        /* don't assume init's pid == 1 */
-       return(kill(*(findPidByName("init")), SIGUSR1));
+       return(kill(*(find_pid_by_name("init")), SIGUSR1));
 #else
        return(kill(1, SIGUSR1));
 #endif