]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Fix tmpl init function name
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 18 Mar 2021 00:15:12 +0000 (00:15 +0000)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Thu, 18 Mar 2021 00:18:07 +0000 (00:18 +0000)
src/lib/unlang/base.c
src/lib/unlang/tmpl.c
src/lib/unlang/unlang_priv.h

index fec50c7fcfc521b43c8df29cb17f1ef72c60f6a3..8ee7b23965f1f8a220aed6619e55dbdf6fd9c950 100644 (file)
@@ -91,7 +91,7 @@ int unlang_init(void)
        unlang_switch_init();
        unlang_call_init();
        unlang_caller_init();
-       unlang_tmpl_init_shallow();
+       unlang_tmpl_init();
 
        return 0;
 }
index 9fdc8e520dfe2fa0bbcfe517a75918e6dd874fa8..d84e34982363f1da19866bdcc78801460cc64942 100644 (file)
@@ -591,7 +591,7 @@ static unlang_action_t unlang_tmpl(rlm_rcode_t *p_result, request_t *request, un
 }
 
 
-void unlang_tmpl_init_shallow(void)
+void unlang_tmpl_init(void)
 {
        unlang_register(UNLANG_TYPE_TMPL,
                           &(unlang_op_t){
index f61d69a48a281f64b75bd6ad51478c769ab38e31..6c20356d8ab2a4187e9e7423c0c1d56aa8eaecaf 100644 (file)
@@ -421,7 +421,7 @@ void                unlang_subrequest_op_free(void);
 
 void           unlang_switch_init(void);
 
-void           unlang_tmpl_init_shallow(void);
+void           unlang_tmpl_init(void);
  /** @} */
 
 #ifdef __cplusplus