]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Rename files.c to users_file.c
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 8 Feb 2018 20:15:24 +0000 (20:15 +0000)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 8 Feb 2018 20:17:45 +0000 (20:17 +0000)
src/include/radiusd.h
src/main/mainconfig.c
src/main/radiusd.mk
src/main/unit_test_module.mk
src/main/users_file.c [moved from src/main/files.c with 100% similarity]

index 44db9fdb73613b0cb1023334de5fd1437999e3fd..cbd2b40578185cc6916aa0cb7aeb8367fb4237b3 100644 (file)
@@ -472,7 +472,7 @@ int regex_request_to_sub_named(TALLOC_CTX *ctx, char **out, REQUEST *request, ch
 #  endif
 #endif
 
-/* files.c */
+/* users_file.c */
 int            pairlist_read(TALLOC_CTX *ctx, char const *file, PAIR_LIST **list, int complain);
 void           pairlist_free(PAIR_LIST **);
 
index 30d5d2a1e771cf8ea06901c7678215ccbbcd4eda..01c2e0f865899193e8fbf4b02ebe1c1c7a579bbf 100644 (file)
@@ -1,8 +1,4 @@
 /*
- * mainconf.c  Handle the server's configuration.
- *
- * Version:    $Id$
- *
  *   This program is free software; you can redistribute it and/or modify
  *   it under the terms of the GNU General Public License as published by
  *   the Free Software Foundation; either version 2 of the License, or
  *   You should have received a copy of the GNU General Public License
  *   along with this program; if not, write to the Free Software
  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
- *
- * Copyright 2002,2006-2007  The FreeRADIUS server project
- * Copyright 2002  Alan DeKok <aland@ox.org>
  */
 
+/**
+ * $Id$
+ *
+ * @brief Handle the the main server's (radiusd) configuration.
+ * @file main/mainconfig.c
+ *
+ * @copyright 2002,2006-2007  The FreeRADIUS server project
+ * @copyright 2002  Alan DeKok <aland@ox.org>
+ */
 RCSID("$Id$")
 
 #include <freeradius-devel/radiusd.h>
@@ -803,7 +805,7 @@ do {\
                                        cf_log_err(ci, "Failed loading library %s: %s", value, dlerror());
                                        talloc_free(cs);
                                        return -1;
-                               }                               
+                               }
                        }
                } /* loop over pairs in ENV */
        } /* there's an ENV subsection */
index 09441cee4a6855c4185773d1fa969e22de343195..b1a1bb88d43bfb5503f73d14701a2b4d114f729b 100644 (file)
@@ -4,7 +4,7 @@ SOURCES := \
     conduit.c \
     client.c \
     crypt.c \
-    files.c \
+    users_file.c \
     mainconfig.c \
     radiusd.c \
     state.c \
index bb0e9f4d065c817bca624f75773404111164f220..c8c7e18178705d33daa2504ae6b69fd10fd95e2d 100644 (file)
@@ -3,7 +3,7 @@ SOURCES := \
        auth.c \
        client.c \
        crypt.c \
-       files.c \
+       users_file.c \
        mainconfig.c \
        unit_test_module.c \
        soh.c \
similarity index 100%
rename from src/main/files.c
rename to src/main/users_file.c