diff options
author | Rob Landley <rob@landley.net> | 2006-03-01 20:48:44 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-03-01 20:48:44 +0000 |
commit | 08abe64d9180d6d56c49900a2f89f3e9ff507201 (patch) | |
tree | 4aa46453022a126c95dd7e6b2b6ee1a579cdf303 /coreutils | |
parent | b7f39732f8f20b88d1b5e90d84dd607205f7d79f (diff) | |
download | busybox-08abe64d9180d6d56c49900a2f89f3e9ff507201.tar.gz |
Selinux fix from Jan Kiszka.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/ls.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c index 489c29ad1..79a583a1c 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -203,10 +203,6 @@ static int list_single(struct dnode *); static unsigned int all_fmt; -#ifdef CONFIG_SELINUX -static int selinux_enabled= 0; -#endif - #ifdef CONFIG_FEATURE_AUTOWIDTH static int terminal_width = TERMINAL_WIDTH; static unsigned short tabstops = COLUMN_GAP; @@ -746,7 +742,7 @@ static int list_single(struct dnode *dn) case LIST_CONTEXT: { char context[80]; - int len; + int len = 0; if (dn->sid) { /* I assume sid initilized with NULL */ |