summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToomas Soome <tsoome@me.com>2015-07-22 13:34:55 +0300
committerDan McDonald <danmcd@omniti.com>2015-07-23 13:37:16 -0400
commit2b66e65286e123b22eb83c96426eafe5b3ddccd3 (patch)
treee5048f8ae71fc6e32e5d26dc4ca8d7cec5816453
parentc365cc98d1939449e0db2884c4fcb62728ee2e59 (diff)
downloadillumos-joyent-2b66e65286e123b22eb83c96426eafe5b3ddccd3.tar.gz
6073 libbe be_run_cmd() bad indentation in function body
Reviewed by: Andrew Stormont <andyjstormont@gmail.com> Reviewed by: Sebastian Wiedenroth <wiedi@frubar.net> Reviewed by: Igor Kozhukhov <ikozhukhov@gmail.com> Reviewed by: Josef Sipek <jeffpc@josefsipek.net> Approved by: Dan McDonald <danmcd@omniti.com>
-rw-r--r--usr/src/lib/libbe/common/be_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/lib/libbe/common/be_utils.c b/usr/src/lib/libbe/common/be_utils.c
index a24e1e0941..681e72366d 100644
--- a/usr/src/lib/libbe/common/be_utils.c
+++ b/usr/src/lib/libbe/common/be_utils.c
@@ -3036,7 +3036,7 @@ be_run_cmd(char *command, char *stderr_buf, int stderr_bufsize,
(stderr_bufsize <= 0) || (stdout_bufsize < 0) ||
((stdout_buf != NULL) ^ (stdout_bufsize != 0))) {
return (BE_ERR_INVAL);
-}
+ }
/* Set up command so popen returns stderr, not stdout */
if (snprintf(cmdline, BUFSIZ, "%s 2> %s", command,