Date: Fri, 27 Aug 2010 14:28:39 +0000 (UTC) From: Pawel Jakub Dawidek <pjd@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r211883 - head/sbin/hastd Message-ID: <201008271428.o7RESdpu080778@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201008271428.o7RESdpu080778>