diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 15:42:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-10 15:42:06 +0000 |
commit | ff131b980d524a33d8a43cefe65e14f64a43f2da (patch) | |
tree | 82d252f04f9a8511be452dcd8b5e322c59653c72 /selinux | |
parent | 163516da3ae54a587fb476c621793bd206f380c2 (diff) | |
download | busybox-w32-ff131b980d524a33d8a43cefe65e14f64a43f2da.tar.gz busybox-w32-ff131b980d524a33d8a43cefe65e14f64a43f2da.tar.bz2 busybox-w32-ff131b980d524a33d8a43cefe65e14f64a43f2da.zip |
style fixes. No code changes.
Diffstat (limited to 'selinux')
-rw-r--r-- | selinux/runcon.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/selinux/runcon.c b/selinux/runcon.c index a3543878c..9f61fdbb6 100644 --- a/selinux/runcon.c +++ b/selinux/runcon.c | |||
@@ -110,7 +110,7 @@ int runcon_main(int argc, char **argv) | |||
110 | if (!(opts & OPTS_CONTEXT_COMPONENT)) { | 110 | if (!(opts & OPTS_CONTEXT_COMPONENT)) { |
111 | context = *argv++; | 111 | context = *argv++; |
112 | if (!argv[0]) | 112 | if (!argv[0]) |
113 | bb_error_msg_and_die("no command found"); | 113 | bb_error_msg_and_die("no command given"); |
114 | } | 114 | } |
115 | 115 | ||
116 | if (context) { | 116 | if (context) { |
@@ -133,5 +133,4 @@ int runcon_main(int argc, char **argv) | |||
133 | execvp(argv[0], argv); | 133 | execvp(argv[0], argv); |
134 | 134 | ||
135 | bb_perror_msg_and_die("cannot execute '%s'", argv[0]); | 135 | bb_perror_msg_and_die("cannot execute '%s'", argv[0]); |
136 | return 1; | ||
137 | } | 136 | } |