diff options
author | Rob Landley <rob@landley.net> | 2005-05-03 03:28:55 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-05-03 03:28:55 +0000 |
commit | e3752e56a43a823f4aaaa9a4374ccc367417b942 (patch) | |
tree | b954cd7801fd3a30f8a5231ee0106c8db11da568 /include | |
parent | 8445a9ff99f04cad8845a1aed6ab17737f2d985a (diff) | |
download | busybox-w32-e3752e56a43a823f4aaaa9a4374ccc367417b942.tar.gz busybox-w32-e3752e56a43a823f4aaaa9a4374ccc367417b942.tar.bz2 busybox-w32-e3752e56a43a823f4aaaa9a4374ccc367417b942.zip |
Revert Tito's patch to zcip. My bad, David Brownell had objected and I missed
it...
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/libbb.h b/include/libbb.h index f2401374b..6ae5c4d64 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -43,7 +43,7 @@ | |||
43 | 43 | ||
44 | #include "config.h" | 44 | #include "config.h" |
45 | #ifdef CONFIG_SELINUX | 45 | #ifdef CONFIG_SELINUX |
46 | #include <proc_secure.h> | 46 | #include <selinux/selinux.h> |
47 | #endif | 47 | #endif |
48 | 48 | ||
49 | #include "pwd_.h" | 49 | #include "pwd_.h" |
@@ -425,12 +425,11 @@ extern void change_identity ( const struct passwd *pw ); | |||
425 | extern const char *change_identity_e2str ( const struct passwd *pw ); | 425 | extern const char *change_identity_e2str ( const struct passwd *pw ); |
426 | extern void run_shell ( const char *shell, int loginshell, const char *command, const char **additional_args | 426 | extern void run_shell ( const char *shell, int loginshell, const char *command, const char **additional_args |
427 | #ifdef CONFIG_SELINUX | 427 | #ifdef CONFIG_SELINUX |
428 | , security_id_t sid | 428 | , security_context_t sid |
429 | #endif | 429 | #endif |
430 | ); | 430 | ); |
431 | extern int run_parts(char **args, const unsigned char test_mode, char **env); | 431 | extern int run_parts(char **args, const unsigned char test_mode, char **env); |
432 | extern int restricted_shell ( const char *shell ); | 432 | extern int restricted_shell ( const char *shell ); |
433 | extern void xsetenv ( const char *key, const char *value ); | ||
434 | extern void setup_environment ( const char *shell, int loginshell, int changeenv, const struct passwd *pw ); | 433 | extern void setup_environment ( const char *shell, int loginshell, int changeenv, const struct passwd *pw ); |
435 | extern int correct_password ( const struct passwd *pw ); | 434 | extern int correct_password ( const struct passwd *pw ); |
436 | extern char *pw_encrypt(const char *clear, const char *salt); | 435 | extern char *pw_encrypt(const char *clear, const char *salt); |
@@ -461,7 +460,7 @@ typedef struct { | |||
461 | 460 | ||
462 | extern procps_status_t * procps_scan(int save_user_arg0 | 461 | extern procps_status_t * procps_scan(int save_user_arg0 |
463 | #ifdef CONFIG_SELINUX | 462 | #ifdef CONFIG_SELINUX |
464 | , int use_selinux, security_id_t *sid | 463 | , int use_selinux, security_context_t *sid |
465 | #endif | 464 | #endif |
466 | ); | 465 | ); |
467 | extern unsigned short compare_string_array(const char *string_array[], const char *key); | 466 | extern unsigned short compare_string_array(const char *string_array[], const char *key); |