]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix const issue
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 5 Nov 2019 14:27:54 +0000 (08:27 -0600)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Tue, 5 Nov 2019 14:27:54 +0000 (08:27 -0600)
src/bin/unit_test_attribute.c

index 35c4485fc79d0c4e1e84a73f67d42f103bdbaffb..f069a02f5b3e1926bca8e8f1fd455e478d8f4d2a 100644 (file)
@@ -792,7 +792,7 @@ static ssize_t load_test_point_by_command(void **symbol, char *command, char con
  * load dictionaries from, then provide a relative path to
  * navigate through test subdirectories or protocols
  */
-static int dictionary_load_common(command_result_t *result, command_ctx_t *cc, char *in, char *default_subdir)
+static int dictionary_load_common(command_result_t *result, command_ctx_t *cc, char *in, char const *default_subdir)
 {
        static  char *name, *dir, *tmp = NULL;
        char *q;