@@ -65,7 +65,7 @@ ROOT::Deprecated::TSecContext::TSecContext(const char *user, const char *host, I
6565 // Keep official list updated with active TSecContexts
6666 if (fOffSet > -1 ) {
6767 R__LOCKGUARD (gROOTMutex );
68- gROOT -> GetListOfSecContexts ()->Add (this );
68+ ROOT::Deprecated::Internal:: GetListOfSecContexts (* gROOT )->Add (this );
6969 }
7070}
7171
@@ -101,7 +101,7 @@ ROOT::Deprecated::TSecContext::TSecContext(const char *url, Int_t meth, Int_t of
101101 // Keep official list updated with active TSecContexts
102102 if (fOffSet > -1 ) {
103103 R__LOCKGUARD (gROOTMutex );
104- gROOT -> GetListOfSecContexts ()->Add (this );
104+ ROOT::Deprecated::Internal:: GetListOfSecContexts (* gROOT )->Add (this );
105105 }
106106}
107107
@@ -161,7 +161,7 @@ void ROOT::Deprecated::TSecContext::Cleanup()
161161 CleanupSecContext (kTRUE );
162162 DeActivate (" R" );
163163 // All have been remotely Deactivated
164- TIter nxtl (gROOT -> GetListOfSecContexts ());
164+ TIter nxtl (ROOT::Deprecated::Internal:: GetListOfSecContexts (* gROOT ));
165165 TSecContext *nscl;
166166 while ((nscl = (TSecContext *)nxtl ())) {
167167 if (nscl != this && !strcmp (nscl->GetHost (), fHost .Data ())) {
@@ -198,7 +198,7 @@ void ROOT::Deprecated::TSecContext::DeActivate(Option_t *Opt)
198198 if (remove && fOffSet > -1 ){
199199 R__LOCKGUARD (gROOTMutex );
200200 // Remove from the global list
201- gROOT -> GetListOfSecContexts ()->Remove (this );
201+ ROOT::Deprecated::Internal:: GetListOfSecContexts (* gROOT )->Remove (this );
202202 }
203203
204204 // Set inactive
0 commit comments