summaryrefslogtreecommitdiff
path: root/netlib.c
diff options
context:
space:
mode:
Diffstat (limited to 'netlib.c')
-rw-r--r--netlib.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/netlib.c b/netlib.c
index df1f2646..d30856d2 100644
--- a/netlib.c
+++ b/netlib.c
@@ -94,7 +94,6 @@ socket_t netlib_connectsock(int af, const char *host, const char *service,
}
if (s > 0) {
- gpsd_report(LOG_SPIN, "close(%d) in netlib_connectsock()\n", s);
(void)close(s);
}
}
@@ -121,8 +120,6 @@ socket_t netlib_connectsock(int af, const char *host, const char *service,
/* set socket to noblocking */
(void)fcntl(s, F_SETFL, fcntl(s, F_GETFL) | O_NONBLOCK);
- gpsd_report(LOG_SPIN, "netlib_connectsock() returns socket on fd %d\n",
- s);
return s;
/*@ +type +mustfreefresh @*/
}