aboutsummaryrefslogtreecommitdiff
path: root/loginutils
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-26 19:00:18 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-26 19:00:18 +0000
commitb6adbf1be29841501cc49917249e85f273e1df7c (patch)
treee28a5603e6009b2479e949b8b9b4aa0620fed400 /loginutils
parent5a6aeddfa7262e41802c77f70c9ef88e9c2c2476 (diff)
downloadbusybox-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.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 @@
*
*/
-#include "busybox.h"
+#include "libbb.h"
static void xgroup_study(struct group *g)
{
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 @@
* 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 54babdc80..0c298c50d 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 2781df319..59e69b9e9 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 64d2d08c2..f969124c1 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 232c610cc..d725466aa 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 a323c0a40..8f65c3d0b 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 0a786cbfb..fd17319da 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 38503f7b1..36b10fbc4 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 06a7169d9..7f614fca1 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;