]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
let's just add commas
authorAlan T. DeKok <aland@freeradius.org>
Fri, 27 Dec 2019 13:43:19 +0000 (08:43 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 27 Dec 2019 13:43:19 +0000 (08:43 -0500)
there's no error if the last field includes a comma, so we
should likely just add them everywhere

src/lib/server/rcode.c

index b6baaa5c5901574f61348b54480e2963923e7475..0023d464e9c8178b62cea6e26e3bc5a8e4707e0e 100644 (file)
@@ -33,7 +33,7 @@ RCSID("$Id$")
 #include <freeradius-devel/server/rcode.h>
 
 fr_table_num_sorted_t const rcode_table[] = {
-       { "disallow",           RLM_MODULE_DISALLOW     }
+       { "disallow",           RLM_MODULE_DISALLOW     },
        { "fail",               RLM_MODULE_FAIL         },
        { "handled",            RLM_MODULE_HANDLED      },
        { "invalid",            RLM_MODULE_INVALID      },