aboutsummaryrefslogtreecommitdiff
path: root/loginutils
diff options
context:
space:
mode:
Diffstat (limited to 'loginutils')
-rw-r--r--loginutils/addgroup.c2
-rw-r--r--loginutils/adduser.c2
-rw-r--r--loginutils/cryptpw.c2
-rw-r--r--loginutils/deluser.c2
-rw-r--r--loginutils/getty.c2
-rw-r--r--loginutils/login.c2
-rw-r--r--loginutils/passwd.c2
-rw-r--r--loginutils/su.c2
-rw-r--r--loginutils/sulogin.c2
-rw-r--r--loginutils/vlock.c2
10 files changed, 10 insertions, 10 deletions
diff --git a/loginutils/addgroup.c b/loginutils/addgroup.c
index 5aefda6ff..2487aad31 100644
--- a/loginutils/addgroup.c
+++ b/loginutils/addgroup.c
@@ -10,7 +10,7 @@
10 * 10 *
11 */ 11 */
12 12
13#include "busybox.h" 13#include "libbb.h"
14 14
15static void xgroup_study(struct group *g) 15static void xgroup_study(struct group *g)
16{ 16{
diff --git a/loginutils/adduser.c b/loginutils/adduser.c
index 124e17730..82a4381ad 100644
--- a/loginutils/adduser.c
+++ b/loginutils/adduser.c
@@ -8,7 +8,7 @@
8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 8 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
9 */ 9 */
10 10
11#include "busybox.h" 11#include "libbb.h"
12 12
13#define OPT_DONT_SET_PASS (1 << 4) 13#define OPT_DONT_SET_PASS (1 << 4)
14#define OPT_DONT_MAKE_HOME (1 << 6) 14#define OPT_DONT_MAKE_HOME (1 << 6)
diff --git a/loginutils/cryptpw.c b/loginutils/cryptpw.c
index 54babdc80..0c298c50d 100644
--- a/loginutils/cryptpw.c
+++ b/loginutils/cryptpw.c
@@ -5,7 +5,7 @@
5 * Cooked from passwd.c by Thomas Lundquist <thomasez@zelow.no> 5 * Cooked from passwd.c by Thomas Lundquist <thomasez@zelow.no>
6 */ 6 */
7 7
8#include "busybox.h" 8#include "libbb.h"
9 9
10int cryptpw_main(int argc, char **argv); 10int cryptpw_main(int argc, char **argv);
11int cryptpw_main(int argc, char **argv) 11int cryptpw_main(int argc, char **argv)
diff --git a/loginutils/deluser.c b/loginutils/deluser.c
index 2781df319..59e69b9e9 100644
--- a/loginutils/deluser.c
+++ b/loginutils/deluser.c
@@ -10,7 +10,7 @@
10 * 10 *
11 */ 11 */
12 12
13#include "busybox.h" 13#include "libbb.h"
14 14
15/* Status */ 15/* Status */
16#define STATUS_OK 0 16#define STATUS_OK 0
diff --git a/loginutils/getty.c b/loginutils/getty.c
index 64d2d08c2..f969124c1 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -16,7 +16,7 @@
16 * 16 *
17 */ 17 */
18 18
19#include "busybox.h" 19#include "libbb.h"
20#include <syslog.h> 20#include <syslog.h>
21 21
22#if ENABLE_FEATURE_UTMP 22#if ENABLE_FEATURE_UTMP
diff --git a/loginutils/login.c b/loginutils/login.c
index 232c610cc..d725466aa 100644
--- a/loginutils/login.c
+++ b/loginutils/login.c
@@ -3,7 +3,7 @@
3 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 3 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
4 */ 4 */
5 5
6#include "busybox.h" 6#include "libbb.h"
7#include <utmp.h> 7#include <utmp.h>
8#include <sys/resource.h> 8#include <sys/resource.h>
9#include <syslog.h> 9#include <syslog.h>
diff --git a/loginutils/passwd.c b/loginutils/passwd.c
index a323c0a40..8f65c3d0b 100644
--- a/loginutils/passwd.c
+++ b/loginutils/passwd.c
@@ -3,7 +3,7 @@
3 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. 3 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
4 */ 4 */
5 5
6#include "busybox.h" 6#include "libbb.h"
7#include <syslog.h> 7#include <syslog.h>
8 8
9 9
diff --git a/loginutils/su.c b/loginutils/su.c
index 0a786cbfb..fd17319da 100644
--- a/loginutils/su.c
+++ b/loginutils/su.c
@@ -5,7 +5,7 @@
5 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. 5 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
6 */ 6 */
7 7
8#include "busybox.h" 8#include "libbb.h"
9#include <syslog.h> 9#include <syslog.h>
10 10
11#define SU_OPT_mp (3) 11#define SU_OPT_mp (3)
diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c
index 38503f7b1..36b10fbc4 100644
--- a/loginutils/sulogin.c
+++ b/loginutils/sulogin.c
@@ -7,7 +7,7 @@
7 7
8#include <syslog.h> 8#include <syslog.h>
9 9
10#include "busybox.h" 10#include "libbb.h"
11 11
12static const char * const forbid[] = { 12static const char * const forbid[] = {
13 "ENV", 13 "ENV",
diff --git a/loginutils/vlock.c b/loginutils/vlock.c
index 06a7169d9..7f614fca1 100644
--- a/loginutils/vlock.c
+++ b/loginutils/vlock.c
@@ -16,7 +16,7 @@
16/* Fixed by Erik Andersen to do passwords the tinylogin way... 16/* Fixed by Erik Andersen to do passwords the tinylogin way...
17 * It now works with md5, sha1, etc passwords. */ 17 * It now works with md5, sha1, etc passwords. */
18 18
19#include "busybox.h" 19#include "libbb.h"
20#include <sys/vt.h> 20#include <sys/vt.h>
21 21
22static struct passwd *pw; 22static struct passwd *pw;