summaryrefslogtreecommitdiffstats
path: root/sbin
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2010-08-27 14:28:39 +0000
committerpjd <pjd@FreeBSD.org>2010-08-27 14:28:39 +0000
commitac5c9c92167fc3e4144590f6f3b82aac67bdb176 (patch)
treecc2bb33f88b9986d1dbb9967dc0a856cceac4462 /sbin
parentead19aaef1acf3ba476246765d4d409eba5c3c02 (diff)
downloadFreeBSD-src-ac5c9c92167fc3e4144590f6f3b82aac67bdb176.zip
FreeBSD-src-ac5c9c92167fc3e4144590f6f3b82aac67bdb176.tar.gz
Reduce indent where possible.
MFC after: 2 weeks Obtained from: Wheel Systems Sp. z o.o. http://www.wheelsystems.com
Diffstat (limited to 'sbin')
-rw-r--r--sbin/hastd/parse.y60
1 files changed, 30 insertions, 30 deletions
diff --git a/sbin/hastd/parse.y b/sbin/hastd/parse.y
index b205dda..5b4f3e5 100644
--- a/sbin/hastd/parse.y
+++ b/sbin/hastd/parse.y
@@ -256,13 +256,13 @@ control_statement: CONTROL STR
}
break;
case 1:
- if (mynode) {
- if (strlcpy(lconfig->hc_controladdr, $2,
- sizeof(lconfig->hc_controladdr)) >=
- sizeof(lconfig->hc_controladdr)) {
- pjdlog_error("control argument is too long.");
- return (1);
- }
+ if (!mynode)
+ break;
+ if (strlcpy(lconfig->hc_controladdr, $2,
+ sizeof(lconfig->hc_controladdr)) >=
+ sizeof(lconfig->hc_controladdr)) {
+ pjdlog_error("control argument is too long.");
+ return (1);
}
break;
default:
@@ -283,13 +283,13 @@ listen_statement: LISTEN STR
}
break;
case 1:
- if (mynode) {
- if (strlcpy(lconfig->hc_listenaddr, $2,
- sizeof(lconfig->hc_listenaddr)) >=
- sizeof(lconfig->hc_listenaddr)) {
- pjdlog_error("listen argument is too long.");
- return (1);
- }
+ if (!mynode)
+ break;
+ if (strlcpy(lconfig->hc_listenaddr, $2,
+ sizeof(lconfig->hc_listenaddr)) >=
+ sizeof(lconfig->hc_listenaddr)) {
+ pjdlog_error("listen argument is too long.");
+ return (1);
}
break;
default:
@@ -493,14 +493,14 @@ name_statement: NAME STR
}
break;
case 2:
- if (mynode) {
- assert(curres != NULL);
- if (strlcpy(curres->hr_provname, $2,
- sizeof(curres->hr_provname)) >=
- sizeof(curres->hr_provname)) {
- pjdlog_error("name argument is too long.");
- return (1);
- }
+ if (!mynode)
+ break;
+ assert(curres != NULL);
+ if (strlcpy(curres->hr_provname, $2,
+ sizeof(curres->hr_provname)) >=
+ sizeof(curres->hr_provname)) {
+ pjdlog_error("name argument is too long.");
+ return (1);
}
break;
default:
@@ -521,14 +521,14 @@ local_statement: LOCAL STR
}
break;
case 2:
- if (mynode) {
- assert(curres != NULL);
- if (strlcpy(curres->hr_localpath, $2,
- sizeof(curres->hr_localpath)) >=
- sizeof(curres->hr_localpath)) {
- pjdlog_error("local argument is too long.");
- return (1);
- }
+ if (!mynode)
+ break;
+ assert(curres != NULL);
+ if (strlcpy(curres->hr_localpath, $2,
+ sizeof(curres->hr_localpath)) >=
+ sizeof(curres->hr_localpath)) {
+ pjdlog_error("local argument is too long.");
+ return (1);
}
break;
default:
OpenPOWER on IntegriCloud