Przeglądaj źródła

dialog: added missing semicolon

Daniel-Constantin Mierla 11 lat temu
rodzic
commit
cf6e157bc8
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      modules/dialog/dlg_handlers.c

+ 1 - 1
modules/dialog/dlg_handlers.c

@@ -1259,7 +1259,7 @@ void dlg_onroute(struct sip_msg* req, str *route_params, void *param)
 		if (timeout!=default_timeout) {
 			dlg->lifetime = timeout;
 		}
-		reset = !((dlg->iflags & DLG_IFLAG_TIMER_NORESET) || timeout_noreset)
+		reset = !((dlg->iflags & DLG_IFLAG_TIMER_NORESET) || timeout_noreset);
 
 		if ((new_state!=DLG_STATE_EARLY) && (old_state!=DLG_STATE_CONFIRMED || reset)) {
 			if (update_dlg_timer( &dlg->tl, dlg->lifetime )==-1) {