aboutsummaryrefslogtreecommitdiff
path: root/coreutils/install.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-20 11:30:28 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-20 11:30:28 +0000
commit9dbd94421304e4bfca9dfb4883a7299b3fb2fe27 (patch)
tree90608280101218f60c7d9181b913e92ba895799d /coreutils/install.c
parent87dd90aa8ab4c88d3dee025044a419d8f2f49cd7 (diff)
downloadbusybox-w32-9dbd94421304e4bfca9dfb4883a7299b3fb2fe27.tar.gz
busybox-w32-9dbd94421304e4bfca9dfb4883a7299b3fb2fe27.tar.bz2
busybox-w32-9dbd94421304e4bfca9dfb4883a7299b3fb2fe27.zip
fix accumulated whitespace and indentation damage
git-svn-id: svn://busybox.net/trunk/busybox@18176 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/install.c')
-rw-r--r--coreutils/install.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/install.c b/coreutils/install.c
index a58a23b6e..c80be01ff 100644
--- a/coreutils/install.c
+++ b/coreutils/install.c
@@ -41,7 +41,7 @@ static void setdefaultfilecon(const char *path) {
41 41
42 if (!is_selinux_enabled()) { 42 if (!is_selinux_enabled()) {
43 return; 43 return;
44 } 44 }
45 if (lstat(path, &s) != 0) { 45 if (lstat(path, &s) != 0) {
46 return; 46 return;
47 } 47 }
@@ -101,7 +101,7 @@ int install_main(int argc, char **argv)
101 /* -c exists for backwards compatibility, it's needed */ 101 /* -c exists for backwards compatibility, it's needed */
102 102
103 flags = getopt32(argc, argv, "cdpsg:m:o:" USE_SELINUX("Z:"), &gid_str, &mode_str, &uid_str USE_SELINUX(, &scontext)); 103 flags = getopt32(argc, argv, "cdpsg:m:o:" USE_SELINUX("Z:"), &gid_str, &mode_str, &uid_str USE_SELINUX(, &scontext));
104 104
105#if ENABLE_SELINUX 105#if ENABLE_SELINUX
106 if (flags & OPT_PRESERVE_SECURITY_CONTEXT) { 106 if (flags & OPT_PRESERVE_SECURITY_CONTEXT) {
107 use_default_selinux_context = 0; 107 use_default_selinux_context = 0;