From: Alan T. DeKok Date: Fri, 8 Feb 2019 22:22:28 +0000 (-0500) Subject: NULL is a C keyword, not a "NULL" string. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d59fd231caaa2d0e694d80915341f3d995a07a77;p=thirdparty%2Ffreeradius-server.git NULL is a C keyword, not a "NULL" string. --- diff --git a/src/modules/rlm_unix/rlm_unix.c b/src/modules/rlm_unix/rlm_unix.c index a8f775b146a..a815607ba72 100644 --- a/src/modules/rlm_unix/rlm_unix.c +++ b/src/modules/rlm_unix/rlm_unix.c @@ -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 };