BIND 10 trac2154, updated. 55b8cc3d350a870450f2e6f4f3068a945fdcef64 [2154] constify array and fix style issue
BIND 10 source code commits
bind10-changes at lists.isc.org
Fri Aug 24 07:13:41 UTC 2012
The branch, trac2154 has been updated
via 55b8cc3d350a870450f2e6f4f3068a945fdcef64 (commit)
from e62db3a0fc55c052561c4fa812600fcd1d057ba3 (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 55b8cc3d350a870450f2e6f4f3068a945fdcef64
Author: Yoshitaka Aharen <aharen at jprs.co.jp>
Date: Fri Aug 24 14:29:38 2012 +0900
[2154] constify array and fix style issue
-----------------------------------------------------------------------
Summary of changes:
src/bin/auth/statistics_items.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/auth/statistics_items.h b/src/bin/auth/statistics_items.h
index 6c919ad..2f42893 100644
--- a/src/bin/auth/statistics_items.h
+++ b/src/bin/auth/statistics_items.h
@@ -72,7 +72,7 @@ enum SocketCounterType {
SOCKET_COUNTER_TYPES ///< The number of defined counters
};
// item names for socket statistics
-const char *SocketCounterItemName[SOCKET_COUNTER_TYPES] = {
+const char* const SocketCounterItemName[SOCKET_COUNTER_TYPES] = {
"ipv4.udp.bindfail",
"ipv4.udp.close",
"ipv4.udp.conn",
@@ -247,7 +247,7 @@ enum QRCounterType {
QR_COUNTER_TYPES ///< The number of defined counters
};
// item names for query/response counters
-const char *QRCounterItemName[QR_COUNTER_TYPES] = {
+const char* const QRCounterItemName[QR_COUNTER_TYPES] = {
"request.v4",
"request.v6",
"request.edns0",
More information about the bind10-changes
mailing list