]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
NULL is a C keyword, not a "NULL" string.
authorAlan T. DeKok <aland@freeradius.org>
Fri, 8 Feb 2019 22:22:28 +0000 (17:22 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 12 Feb 2019 22:18:09 +0000 (17:18 -0500)
src/modules/rlm_unix/rlm_unix.c

index a8f775b146a9aad7414b52c8e90aabcbae7412b9..a815607ba729ca6cb06d4bc89eba3ef3d4ec6ab5 100644 (file)
@@ -56,7 +56,7 @@ typedef struct {
 } rlm_unix_t;
 
 static const CONF_PARSER module_config[] = {
-       { FR_CONF_OFFSET("radwtmp", FR_TYPE_FILE_OUTPUT | FR_TYPE_REQUIRED, rlm_unix_t, radwtmp), .dflt = "NULL" },
+       { FR_CONF_OFFSET("radwtmp", FR_TYPE_FILE_OUTPUT | FR_TYPE_REQUIRED, rlm_unix_t, radwtmp) },
        CONF_PARSER_TERMINATOR
 };