]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Unconst errstr
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 27 Feb 2019 11:44:08 +0000 (19:44 +0800)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Wed, 27 Feb 2019 11:44:08 +0000 (19:44 +0800)
src/lib/server/log.c

index 7c8d13b2093bf092174da9f47f6c5a1292509e63..830dc1044f95fd083758560a2eb78e7aae092e04 100644 (file)
@@ -707,7 +707,7 @@ void log_request_marker(fr_log_type_t type, fr_log_lvl_t lvl, REQUEST *request,
        uint8_t         unlang_indent;
        uint8_t         module_indent;
        va_list         ap;
-       char const      *errstr;
+       char            *errstr;
 
        if (idx >= sizeof(spaces)) {
                size_t offset = (idx - (sizeof(spaces) - 1)) + (sizeof(spaces) * 0.75);