diff options
author | Denis Vlasenko | 2007-05-26 19:00:18 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-05-26 19:00:18 +0000 |
commit | b6adbf1be29841501cc49917249e85f273e1df7c (patch) | |
tree | e28a5603e6009b2479e949b8b9b4aa0620fed400 /loginutils | |
parent | 5a6aeddfa7262e41802c77f70c9ef88e9c2c2476 (diff) | |
download | busybox-b6adbf1be29841501cc49917249e85f273e1df7c.zip busybox-b6adbf1be29841501cc49917249e85f273e1df7c.tar.gz |
usage.c: remove reference to busybox.h
*: s/include "busybox.h"/include "libbb.h"
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/addgroup.c | 2 | ||||
-rw-r--r-- | loginutils/adduser.c | 2 | ||||
-rw-r--r-- | loginutils/cryptpw.c | 2 | ||||
-rw-r--r-- | loginutils/deluser.c | 2 | ||||
-rw-r--r-- | loginutils/getty.c | 2 | ||||
-rw-r--r-- | loginutils/login.c | 2 | ||||
-rw-r--r-- | loginutils/passwd.c | 2 | ||||
-rw-r--r-- | loginutils/su.c | 2 | ||||
-rw-r--r-- | loginutils/sulogin.c | 2 | ||||
-rw-r--r-- | loginutils/vlock.c | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/loginutils/addgroup.c b/loginutils/addgroup.c index 5aefda6..2487aad 100644 --- a/loginutils/addgroup.c +++ b/loginutils/addgroup.c @@ -10,7 +10,7 @@ * */ -#include "busybox.h" +#include "libbb.h" static void xgroup_study(struct group *g) { diff --git a/loginutils/adduser.c b/loginutils/adduser.c index 124e177..82a4381 100644 --- a/loginutils/adduser.c +++ b/loginutils/adduser.c @@ -8,7 +8,7 @@ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ -#include "busybox.h" +#include "libbb.h" #define OPT_DONT_SET_PASS (1 << 4) #define OPT_DONT_MAKE_HOME (1 << 6) diff --git a/loginutils/cryptpw.c b/loginutils/cryptpw.c index 54babdc..0c298c5 100644 --- a/loginutils/cryptpw.c +++ b/loginutils/cryptpw.c @@ -5,7 +5,7 @@ * Cooked from passwd.c by Thomas Lundquist <thomasez@zelow.no> */ -#include "busybox.h" +#include "libbb.h" int cryptpw_main(int argc, char **argv); int cryptpw_main(int argc, char **argv) diff --git a/loginutils/deluser.c b/loginutils/deluser.c index 2781df3..59e69b9 100644 --- a/loginutils/deluser.c +++ b/loginutils/deluser.c @@ -10,7 +10,7 @@ * */ -#include "busybox.h" +#include "libbb.h" /* Status */ #define STATUS_OK 0 diff --git a/loginutils/getty.c b/loginutils/getty.c index 64d2d08..f969124 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -16,7 +16,7 @@ * */ -#include "busybox.h" +#include "libbb.h" #include <syslog.h> #if ENABLE_FEATURE_UTMP diff --git a/loginutils/login.c b/loginutils/login.c index 232c610..d725466 100644 --- a/loginutils/login.c +++ b/loginutils/login.c @@ -3,7 +3,7 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include "busybox.h" +#include "libbb.h" #include <utmp.h> #include <sys/resource.h> #include <syslog.h> diff --git a/loginutils/passwd.c b/loginutils/passwd.c index a323c0a..8f65c3d 100644 --- a/loginutils/passwd.c +++ b/loginutils/passwd.c @@ -3,7 +3,7 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include "busybox.h" +#include "libbb.h" #include <syslog.h> diff --git a/loginutils/su.c b/loginutils/su.c index 0a786cb..fd17319 100644 --- a/loginutils/su.c +++ b/loginutils/su.c @@ -5,7 +5,7 @@ * Licensed under the GPL v2 or later, see the file LICENSE in this tarball. */ -#include "busybox.h" +#include "libbb.h" #include <syslog.h> #define SU_OPT_mp (3) diff --git a/loginutils/sulogin.c b/loginutils/sulogin.c index 38503f7..36b10fb 100644 --- a/loginutils/sulogin.c +++ b/loginutils/sulogin.c @@ -7,7 +7,7 @@ #include <syslog.h> -#include "busybox.h" +#include "libbb.h" static const char * const forbid[] = { "ENV", diff --git a/loginutils/vlock.c b/loginutils/vlock.c index 06a7169..7f614fc 100644 --- a/loginutils/vlock.c +++ b/loginutils/vlock.c @@ -16,7 +16,7 @@ /* Fixed by Erik Andersen to do passwords the tinylogin way... * It now works with md5, sha1, etc passwords. */ -#include "busybox.h" +#include "libbb.h" #include <sys/vt.h> static struct passwd *pw; |