mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
removed debugging output
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@259 8ec27952-4edc-4aab-86aa-e87bb2611832
This commit is contained in:
parent
0a584fd126
commit
c8d412df73
1 changed files with 2 additions and 6 deletions
|
@ -121,15 +121,11 @@ int socket_close(struct node *n)
|
|||
{
|
||||
struct socket *s = n->socket;
|
||||
|
||||
if (s->sd >= 0) {
|
||||
debug(5, "closing sd = %u", s->sd);
|
||||
if (s->sd >= 0)
|
||||
close(s->sd);
|
||||
}
|
||||
|
||||
if (s->sd2 >= 0) {
|
||||
debug(5, "closing sd2 = %u", s->sd2);
|
||||
if (s->sd2 >= 0)
|
||||
close(s->sd2);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue