BIND 10 trac2850_4, updated. c226db710c71f94fe3506a588bcd4566cab5b2dd [2850] style matter: combined two short lines.
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu May 23 20:35:50 UTC 2013
The branch, trac2850_4 has been updated
via c226db710c71f94fe3506a588bcd4566cab5b2dd (commit)
from 54c8596393d90528dad115ccf111a5dbc51c5b73 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c226db710c71f94fe3506a588bcd4566cab5b2dd
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Thu May 23 13:35:26 2013 -0700
[2850] style matter: combined two short lines.
-----------------------------------------------------------------------
Summary of changes:
src/lib/util/memory_segment.h | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/util/memory_segment.h b/src/lib/util/memory_segment.h
index da2c5ec..b2050ff 100644
--- a/src/lib/util/memory_segment.h
+++ b/src/lib/util/memory_segment.h
@@ -325,12 +325,10 @@ private:
/// an underscore ('_').
static void validateName(const char* name) {
if (!name) {
- isc_throw(InvalidParameter,
- "NULL is invalid for a name.");
+ isc_throw(InvalidParameter, "NULL is invalid for a name.");
}
if (*name == '\0') {
- isc_throw(InvalidParameter,
- "Empty names are invalid.");
+ isc_throw(InvalidParameter, "Empty names are invalid.");
} else if (*name == '_') {
isc_throw(InvalidParameter,
"Names beginning with '_' are reserved for "
More information about the bind10-changes
mailing list