Fix a typo
[oweals/busybox.git] / init / reboot.c
index a3c0000f10ba1638f1072f04429314aa552151ee..ca4e9a24034a8b57d83e8d53d0af14f853062236 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Mini reboot implementation for busybox
  *
- * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
+ * Copyright (C) 1999-2004 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
@@ -39,11 +39,11 @@ extern int reboot_main(int argc, char **argv)
 
 #ifndef CONFIG_INIT
 #ifndef RB_AUTOBOOT
-#define RB_AUTOBOOT                            0x01234567
+#define RB_AUTOBOOT            0x01234567
 #endif
        return(bb_shutdown_system(RB_AUTOBOOT));
 #else
-       return kill_init(SIGUSR2);
+       return kill_init(SIGTERM);
 #endif
 }