bb_dev_null
This commit is contained in:
parent
3ade65fc04
commit
86a1073e0b
@ -332,7 +332,7 @@ extern const char * const bb_path_gshadow_file;
|
|||||||
extern const char * const bb_path_group_file;
|
extern const char * const bb_path_group_file;
|
||||||
extern const char * const bb_path_securetty_file;
|
extern const char * const bb_path_securetty_file;
|
||||||
extern const char * const bb_path_motd_file;
|
extern const char * const bb_path_motd_file;
|
||||||
|
extern const char * const bb_dev_null;
|
||||||
/*
|
/*
|
||||||
* You can change LIBBB_DEFAULT_LOGIN_SHELL, but don`t use,
|
* You can change LIBBB_DEFAULT_LOGIN_SHELL, but don`t use,
|
||||||
* use bb_default_login_shell and next defines,
|
* use bb_default_login_shell and next defines,
|
||||||
|
@ -47,7 +47,7 @@ LIBBB_MOBJ0:=full_version.o \
|
|||||||
can_not_create_raw_socket.o perm_denied_are_you_root.o \
|
can_not_create_raw_socket.o perm_denied_are_you_root.o \
|
||||||
shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \
|
shadow_file.o passwd_file.o group_file.o gshadow_file.o nologin_file.o \
|
||||||
securetty_file.o motd_file.o \
|
securetty_file.o motd_file.o \
|
||||||
msg_standard_input.o msg_standard_output.o shell_file.o
|
msg_standard_input.o msg_standard_output.o shell_file.o bb_dev_null.o
|
||||||
|
|
||||||
LIBBB_MSRC1:=$(srcdir)/xfuncs.c
|
LIBBB_MSRC1:=$(srcdir)/xfuncs.c
|
||||||
LIBBB_MOBJ1:=xmalloc.o xrealloc.o xcalloc.o xstrdup.o xstrndup.o \
|
LIBBB_MOBJ1:=xmalloc.o xrealloc.o xcalloc.o xstrdup.o xstrndup.o \
|
||||||
|
@ -7,6 +7,7 @@
|
|||||||
* Licensed under the GPL v2, see the file LICENSE in this tarball.
|
* Licensed under the GPL v2, see the file LICENSE in this tarball.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "libbb.h"
|
||||||
|
|
||||||
#ifdef L_bb_getgrgid
|
#ifdef L_bb_getgrgid
|
||||||
/* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more
|
/* Hacked by Tito Ragusa (c) 2004 <farmatito@tiscali.it> to make it more
|
||||||
@ -26,7 +27,6 @@
|
|||||||
* the program exits.
|
* the program exits.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libbb.h"
|
|
||||||
#include "grp_.h"
|
#include "grp_.h"
|
||||||
|
|
||||||
/* gets a groupname given a gid */
|
/* gets a groupname given a gid */
|
||||||
@ -42,7 +42,6 @@ char * bb_getgrgid(char *group, long gid, int bufsize)
|
|||||||
#ifdef L_bb_xgetgrnam
|
#ifdef L_bb_xgetgrnam
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "libbb.h"
|
|
||||||
#include "pwd_.h"
|
#include "pwd_.h"
|
||||||
#include "grp_.h"
|
#include "grp_.h"
|
||||||
|
|
||||||
@ -63,7 +62,6 @@ long bb_xgetgrnam(const char *name)
|
|||||||
#ifdef L_bb_xgetpwnam
|
#ifdef L_bb_xgetpwnam
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "libbb.h"
|
|
||||||
#include "pwd_.h"
|
#include "pwd_.h"
|
||||||
#include "grp_.h"
|
#include "grp_.h"
|
||||||
|
|
||||||
@ -99,7 +97,6 @@ long bb_xgetpwnam(const char *name)
|
|||||||
* the program exits.
|
* the program exits.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "libbb.h"
|
|
||||||
#include "pwd_.h"
|
#include "pwd_.h"
|
||||||
|
|
||||||
/* gets a username given a uid */
|
/* gets a username given a uid */
|
||||||
@ -129,7 +126,6 @@ char * bb_getpwuid(char *name, long uid, int bufsize)
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include "libbb.h"
|
|
||||||
|
|
||||||
|
|
||||||
/* internal function for bb_getpwuid and bb_getgrgid */
|
/* internal function for bb_getpwuid and bb_getgrgid */
|
||||||
|
@ -97,3 +97,7 @@ const char * const bb_path_motd_file = MOTD_FILE;
|
|||||||
const char * const bb_default_login_shell = LIBBB_DEFAULT_LOGIN_SHELL;
|
const char * const bb_default_login_shell = LIBBB_DEFAULT_LOGIN_SHELL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef L_dev_null
|
||||||
|
const char * const bb_dev_null = "dev/null";
|
||||||
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user