Remove unneeded variable
authorAlan T. DeKok <aland@freeradius.org>
Sat, 6 Dec 2014 15:42:30 +0000 (10:42 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Sat, 6 Dec 2014 15:42:30 +0000 (10:42 -0500)
src/main/radmin.c

index c5a43a2..b8b59cb 100644 (file)
@@ -440,7 +440,6 @@ int main(int argc, char **argv)
 {
        int             argval;
        bool            quiet = false;
-       bool            done_license = false;
        int             sockfd = -1;
        char            *line = NULL;
        ssize_t         len;
@@ -686,15 +685,13 @@ int main(int argc, char **argv)
                exit(0);
        }
 
-       if (!done_license && !quiet) {
+       if (!quiet) {
                printf("%s - FreeRADIUS Server administration tool.\n", radmin_version);
                printf("Copyright (C) 2008-2014 The FreeRADIUS server project and contributors.\n");
                printf("There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A\n");
                printf("PARTICULAR PURPOSE.\n");
                printf("You may redistribute copies of FreeRADIUS under the terms of the\n");
                printf("GNU General Public License v2.\n");
-
-               done_license = true;
        }
 
        /*