]> ruderich.org/simon Gitweb - socket2unix/socket2unix.git/commitdiff
Remove unnecessary DBG() output.
authorSimon Ruderich <simon@ruderich.org>
Mon, 2 Dec 2013 22:29:36 +0000 (23:29 +0100)
committerSimon Ruderich <simon@ruderich.org>
Mon, 2 Dec 2013 22:29:36 +0000 (23:29 +0100)
src/socket2unix.c

index 27f8d6833e43cff6afe21a3c4c2f1c531c3b7412..12f03f56dd2654ed8fe767b17101f8b8110422c5 100644 (file)
@@ -448,14 +448,14 @@ int close(int fd) {
     static int (*real_close)(int);
     LOAD_FUNCTION(real_close, "close");
 
-    DBG("close(%d)\n", fd);
-
     struct list *entry = remove_sockfd(fd);
     if (entry == NULL) {
         DBG("close(%d): sockfd not found\n", fd);
         return real_close(fd);
     }
     assert(fd == entry->orig_sockfd);
+
+    DBG("close(%d)\n", fd);
     free(entry->orig_addr);
     free(entry);
 
@@ -466,8 +466,6 @@ int bind(int sockfd, const struct sockaddr *addr, socklen_t addrlen) {
     static int (*real_bind)(int, const struct sockaddr *, socklen_t);
     LOAD_FUNCTION(real_bind, "bind");
 
-    DBG("bind(%d, ..)\n", sockfd);
-
     if (addr == NULL || addrlen < sizeof(addr->sa_family)
             || addr->sa_family == AF_UNIX
             || addr->sa_family == AF_LOCAL) {
@@ -593,8 +591,6 @@ int accept(int sockfd, struct sockaddr *addr, socklen_t *addrlen) {
         return real_accept(sockfd, addr, addrlen);
     }
 
-    DBG("accept(%d, ..)\n", sockfd);
-
     struct list *entry = find_sockfd(sockfd);
     if (!entry) {
         DBG("accept(%d, ..): sockfd not found\n", sockfd);
@@ -647,8 +643,6 @@ int connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen) {
         return real_connect(sockfd, addr, addrlen);
     }
 
-    DBG("connect(%d, ..)\n", sockfd);
-
     if (addr == NULL || addrlen < sizeof(addr->sa_family)
             || addr->sa_family == AF_UNIX
             || addr->sa_family == AF_LOCAL) {