svn commit: r211883 - head/sbin/hastd

Pawel Jakub Dawidek pjd at FreeBSD.org
Fri Aug 27 14:28:39 UTC 2010


Author: pjd
Date: Fri Aug 27 14:28:39 2010
New Revision: 211883
URL: http://svn.freebsd.org/changeset/base/211883

Log:
  Reduce indent where possible.
  
  MFC after:	2 weeks
  Obtained from:	Wheel Systems Sp. z o.o. http://www.wheelsystems.com

Modified:
  head/sbin/hastd/parse.y

Modified: head/sbin/hastd/parse.y
==============================================================================
--- head/sbin/hastd/parse.y	Fri Aug 27 14:26:37 2010	(r211882)
+++ head/sbin/hastd/parse.y	Fri Aug 27 14:28:39 2010	(r211883)
@@ -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:


More information about the svn-src-all mailing list