fix unnotified unregistrations

This commit is contained in:
Simon Morlat 2010-10-07 13:59:17 +02:00
parent fbcf292792
commit 9642f4e72a

View file

@ -1446,7 +1446,9 @@ static void registration_success(Sal *sal, eXosip_event_t *ev){
if (!register_again_with_updated_contact(op,ev->request,ev->response)){
sal->callbacks.register_success(op,registered);
}
}else registered=FALSE;
}else {
sal->callbacks.register_success(op,FALSE);
}
}
static bool_t registration_failure(Sal *sal, eXosip_event_t *ev){