silc_snprintf name fixes.
[silc.git] / lib / silcutil / silcfsm.c
index 9ba6466f3f5577db8d7f90fa8f8a55a687c89638..2219ed54e664561d8c19a30d9074e1cf59c8ecc9 100644 (file)
@@ -407,9 +407,9 @@ SILC_TASK_CALLBACK(silc_fsm_run)
   SILC_LOG_DEBUG(("Running %s %p", fsm->thread ? "thread" : "FSM", fsm));
 
   /* Run the states */
-//  do
+  do
     status = fsm->next_state(fsm, fsm->fsm_context, fsm->state_context);
-//  while (status == SILC_FSM_CONTINUE);
+  while (status == SILC_FSM_ST_CONTINUE);
 
   switch (status) {
   case SILC_FSM_ST_YIELD: