Skip to content

Commit

Permalink
Arrange in order of use
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Feb 23, 2020
1 parent 9eab4c9 commit a7f058a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/modules/rlm_radius/rlm_radius.c
Expand Up @@ -808,11 +808,13 @@ module_t rlm_radius = {
.type = RLM_TYPE_THREAD_SAFE | RLM_TYPE_RESUMABLE,
.inst_size = sizeof(rlm_radius_t),
.config = module_config,
.bootstrap = mod_bootstrap,
.instantiate = mod_instantiate,

.onload = mod_load,
.unload = mod_unload,

.bootstrap = mod_bootstrap,
.instantiate = mod_instantiate,

.thread_inst_size = sizeof(rlm_radius_thread_t),
.thread_instantiate = mod_thread_instantiate,
.thread_detach = mod_thread_detach,
Expand Down

0 comments on commit a7f058a

Please sign in to comment.