Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ingo Voss
OpenLDAP
Commits
f8b9b03d
Commit
f8b9b03d
authored
Mar 22, 1999
by
Kurt Zeilenga
Browse files
Add trace to connection_get() to aid debugging.
parent
4b65e74f
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/connection.c
View file @
f8b9b03d
...
@@ -107,7 +107,13 @@ static Connection* connection_get( int s )
...
@@ -107,7 +107,13 @@ static Connection* connection_get( int s )
}
}
}
}
#endif
#endif
if
(
c
!=
NULL
)
{
if
(
c
!=
NULL
)
{
/* we do this BEFORE locking to aid in debugging */
Debug
(
LDAP_DEBUG_TRACE
,
"connection_get(%d): got connid=%ld
\n
"
,
s
,
c
->
c_connid
,
0
);
ldap_pvt_thread_mutex_lock
(
&
c
->
c_mutex
);
ldap_pvt_thread_mutex_lock
(
&
c
->
c_mutex
);
}
}
return
c
;
return
c
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment