From 6aa3b1b12ae4b753d384472f3935d5e66584a518 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Fri, 4 Jan 2013 16:02:53 +0100 Subject: Move const specifiers in handshake record names to the correct place --- src/handshake.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/handshake.c b/src/handshake.c index 28a8ec1..15d171f 100644 --- a/src/handshake.c +++ b/src/handshake.c @@ -32,7 +32,7 @@ #include "task.h" -static const char const *RECORD_TYPES[RECORD_MAX] = { +static const char *const RECORD_TYPES[RECORD_MAX] = { "handshake type", "reply code", "error detail", @@ -50,7 +50,7 @@ static const char const *RECORD_TYPES[RECORD_MAX] = { "method list", }; -static const char const *REPLY_TYPES[REPLY_MAX] = { +static const char *const REPLY_TYPES[REPLY_MAX] = { "success", "mandatory field missing", "unacceptable value", -- cgit v1.2.3