@@ -256,7 +256,7 @@ class Select
256256 slct_ready(*getDefaultMemoryPool ())
257257 { }
258258
259- explicit Select (Firebird:: MemoryPool& pool)
259+ explicit Select (MemoryPool& pool)
260260 : slct_time(0 ), slct_count(0 ), slct_poll(pool), slct_ready(pool)
261261 { }
262262#else
@@ -266,7 +266,7 @@ class Select
266266 memset (&slct_fdset, 0 , sizeof slct_fdset);
267267 }
268268
269- explicit Select (Firebird:: MemoryPool& /* pool*/ )
269+ explicit Select (MemoryPool& /* pool*/ )
270270 : slct_time(0 ), slct_count(0 ), slct_width(0 )
271271 {
272272 memset (&slct_fdset, 0 , sizeof slct_fdset);
@@ -616,7 +616,7 @@ ULONG INET_remote_buffer;
616616static GlobalPtr<Mutex> init_mutex;
617617static volatile bool INET_initialized = false ;
618618static volatile bool INET_shutting_down = false ;
619- static Firebird:: GlobalPtr<Select> INET_select;
619+ static GlobalPtr<Select> INET_select;
620620static rem_port* inet_async_receive = NULL ;
621621
622622
@@ -632,7 +632,7 @@ rem_port* INET_analyze(ClntAuthBlock* cBlock,
632632 ClumpletReader &dpb,
633633 RefPtr<const Config>* config,
634634 const PathName* ref_db_name,
635- Firebird:: ICryptKeyCallback* cryptCb,
635+ ICryptKeyCallback* cryptCb,
636636 int af)
637637{
638638/* *************************************
@@ -3079,7 +3079,7 @@ static bool packet_receive(rem_port* port, UCHAR* buffer, SSHORT buffer_length,
30793079 if (n > 0 && port->port_crypt_plugin )
30803080 {
30813081 port->port_crypt_plugin ->decrypt (&st, n, buffer, buffer);
3082- if (st.getState () & Firebird:: IStatus::STATE_ERRORS)
3082+ if (st.getState () & IStatus::STATE_ERRORS)
30833083 {
30843084 status_exception::raise (&st);
30853085 }
@@ -3163,7 +3163,7 @@ static bool packet_send( rem_port* port, const SCHAR* buffer, SSHORT buffer_leng
31633163
31643164 char * d = b.getBuffer (buffer_length);
31653165 port->port_crypt_plugin ->encrypt (&st, buffer_length, data, d);
3166- if (st.getState () & Firebird:: IStatus::STATE_ERRORS)
3166+ if (st.getState () & IStatus::STATE_ERRORS)
31673167 {
31683168 status_exception::raise (&st);
31693169 }
0 commit comments