diff --git a/src/servers/registrar/RosterAppInfo.cpp b/src/servers/registrar/RosterAppInfo.cpp index bc10601d77..f293a1eb29 100644 --- a/src/servers/registrar/RosterAppInfo.cpp +++ b/src/servers/registrar/RosterAppInfo.cpp @@ -31,7 +31,7 @@ // constructor RosterAppInfo::RosterAppInfo() : app_info(), - state(APP_STATE_INVALID), + state(APP_STATE_UNREGISTERED), token(0), registration_time(0) { diff --git a/src/servers/registrar/RosterAppInfo.h b/src/servers/registrar/RosterAppInfo.h index 5c78f66511..e81708402f 100644 --- a/src/servers/registrar/RosterAppInfo.h +++ b/src/servers/registrar/RosterAppInfo.h @@ -30,7 +30,7 @@ #include enum application_state { - APP_STATE_INVALID, + APP_STATE_UNREGISTERED, APP_STATE_PRE_REGISTERED, APP_STATE_REGISTERED, };