]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
correct spelling mistake. Fixes #4374
authorAlan T. DeKok <aland@freeradius.org>
Mon, 24 Jan 2022 23:42:02 +0000 (18:42 -0500)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 24 Jan 2022 23:45:06 +0000 (18:45 -0500)
src/lib/eap_aka_sim/state_machine.c
src/lib/eap_aka_sim/state_machine.h
src/modules/rlm_eap/types/rlm_eap_aka/eap_aka.h
src/modules/rlm_unbound/rlm_unbound.5
src/process/eap_aka/base.c
src/process/eap_aka_prime/base.c

index 2f79107f1967b91efcc75821ffafa290e2165bfb..8a900a9dab53eb105126ed1b3faf4f331437e198 100644 (file)
@@ -2087,13 +2087,13 @@ STATE_GUARD(common_reauthentication)
  *
  * - If 'recv Synchronization-Failure { ... }' returned a failure
  *   rcode, enter the FAILURE-NOTIFICATION state.
- * - ...or if no 'recv Syncronization-Failure { ... }' section was
+ * - ...or if no 'recv Synchronization-Failure { ... }' section was
  *   defined, then enter the FAILURE-NOTIFICATION state.
  * - ...or if the user didn't provide a new SQN value in &control.SQN
  *   then enter the FAILURE-NOTIFICATION state.
  * - ...or enter the AKA-CHALLENGE state.
  */
-RESUME(recv_aka_syncronization_failure)
+RESUME(recv_aka_synchronization_failure)
 {
        eap_aka_sim_process_conf_t      *inst = talloc_get_type_abort(mctx->inst->data, eap_aka_sim_process_conf_t);
        eap_aka_sim_session_t           *eap_aka_sim_session = talloc_get_type_abort(mctx->rctx, eap_aka_sim_session_t);
@@ -2109,7 +2109,7 @@ RESUME(recv_aka_syncronization_failure)
         *      then it's highly likely whatever user configured action was
         *      configured was unsuccessful, and we should just give up.
         */
-       if (!inst->actions.recv_aka_syncronization_failure || eap_aka_sim_session->prev_recv_sync_failure) {
+       if (!inst->actions.recv_aka_synchronization_failure || eap_aka_sim_session->prev_recv_sync_failure) {
        failure:
                return STATE_TRANSITION(common_failure_notification);
        }
@@ -2227,7 +2227,7 @@ RESUME(recv_aka_challenge_response)
  *   - EAP-Response/AKA-Challenge - call 'recv Challenge-Response { ... }'.
  *   - EAP-Response/AKA-Authentication-Reject - call 'recv Authentication-Reject { ... }'  and after that
  *     send a EAP-Request/SIM-Notification indicating a General Failure.
- *   - EAP-Response/AKA-Syncronization-Failure - call 'recv Syncronization-Failure { ... }'.
+ *   - EAP-Response/AKA-Synchronization-Failure - call 'recv Syncronization-Failure { ... }'.
  *   - EAP-Response/AKA-Client-Error - call 'recv Client-Error { ... }' and after that
  *     send a EAP-Request/AKA-Notification indicating a General Failure.
  *   - Anything else, enter the FAILURE-NOTIFICATION state.
@@ -2296,7 +2296,7 @@ STATE(aka_challenge)
                        goto failure;
                }
 
-               return CALL_SECTION(recv_aka_syncronization_failure);
+               return CALL_SECTION(recv_aka_synchronization_failure);
        }
 
        /*
index 285dd3d394c8a86262078625826d2dfca126750d..4f4171b969e6b96d12b8089afba9607f05c8051c 100644 (file)
@@ -108,7 +108,7 @@ typedef struct {
 
                        CONF_SECTION    *recv_aka_authentication_reject;//!< Called if the supplicant rejects the
                                                                        ///< authentication attempt.
-                       CONF_SECTION    *recv_aka_syncronization_failure;//!< Called if the supplicant determines
+                       CONF_SECTION    *recv_aka_synchronization_failure;//!< Called if the supplicant determines
                                                                        ///< the AUTN value is invalid.
                                                                        ///< Usually used for resyncing with the HLR.
 
index f405dad5ad202d8d7ae67a7f268775d63b554796..55a2d05e4df6a269f537f0e67012d4d746cd478c 100644 (file)
@@ -77,7 +77,7 @@ typedef struct {
                                                                        ///< an error of some kind.
        CONF_SECTION                    *recv_authentication_reject;    //!< Called if the supplicant rejects the
                                                                        ///< authentication attempt.
-       CONF_SECTION                    *recv_syncronization_failure;   //!< Called if the supplicant determines
+       CONF_SECTION                    *recv_synchronization_failure;  //!< Called if the supplicant determines
                                                                        ///< the AUTN value is invalid.
                                                                        ///< Usually used for resyncing with the HLR.
 
index 196d070668f32a390e6c0bbb6dd1222d2aaa471c..2d3ffc4afc19f1527a4dd8ac9116e993fb1f93bf 100644 (file)
@@ -28,8 +28,8 @@ Each instance of rlm_unbound may take the following parameters:
 This file must exist and must point to a valid libunbound configuration file.
 The default is ${raddbdir}/mods-config/unbound/default.conf.
 .IP timeout
-While libunbound provides an asyncronous API for internal use, using any xlat
-is done syncronously from the perspective of unlang.  This value limits the
+While libunbound provides an asynchronous API for internal use, using any xlat
+is done synchronously from the perspective of unlang.  This value limits the
 amount of time a request will wait for DNS to respond, after which the xlat
 will fail.  The default is 3000 milliseconds.  This setting is independent of
 any libunbound configuration values.
index 239b10ac5d4767835509392dd399d91df535a2ff..0b557eef7416ea6322ce77fdf94ab17eb0170f15 100644 (file)
@@ -132,9 +132,9 @@ static virtual_server_compile_t const compile_list[] = {
        },
        {
                .name = "recv",
-               .name2 = "Syncronization-Failure",
+               .name2 = "Synchronization-Failure",
                .component = MOD_AUTHORIZE,
-               .offset = offsetof(eap_aka_sim_process_conf_t, actions.recv_aka_syncronization_failure)
+               .offset = offsetof(eap_aka_sim_process_conf_t, actions.recv_aka_synchronization_failure)
        },
 
        /*
index 0ee2d7c060162ef19393e1e9c81b45fd92ee5199..2ae6ced4c0c20a3d5f2311762a7a263d7b42c24f 100644 (file)
@@ -133,9 +133,9 @@ static virtual_server_compile_t const compile_list[] = {
        },
        {
                .name = "recv",
-               .name2 = "Syncronization-Failure",
+               .name2 = "Synchronization-Failure",
                .component = MOD_AUTHORIZE,
-               .offset = offsetof(eap_aka_sim_process_conf_t, actions.recv_aka_syncronization_failure)
+               .offset = offsetof(eap_aka_sim_process_conf_t, actions.recv_aka_synchronization_failure)
        },
 
        /*