diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-05-12 00:53:34 +0200 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-05-12 00:53:34 +0200 |
commit | bbfddf117595d7a3bb078e5836d94fe074972a21 (patch) | |
tree | 6b22032f00deb9f6e83f98546792d64acbd0595d | |
parent | 436c3f8ac4a34cf3556046f7844b1b29b9576d8e (diff) |
WIP unix socket debug 10old/current-jessie
-rw-r--r-- | sysdep/unix/io.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index 2485e49a..bfefc007 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -1520,7 +1520,7 @@ static void hexdump(const char *data, socklen_t size) { sprintf(buf + i*3, "%02x ", data[i]); } - log(L_TRACE, "sk_connect_unix: %s", buf); + log(L_TRACE "sk_connect_unix: %s", buf); } int @@ -1529,12 +1529,12 @@ sk_connect_unix(sock *s, char *name, socklen_t namelen) struct sockaddr_un sa; int fd; - log(L_TRACE, "sk_connect_unix %d %s", name[0], name + 1); + log(L_TRACE "sk_connect_unix %d %s", name[0], name + 1); if (namelen > sizeof(sa.sun_path)) return -1; - log(L_TRACE, "sk_connect_unix 2"); + log(L_TRACE "sk_connect_unix 2"); /* We are sloppy during error (leak fd and not set s->err), but we die anyway */ @@ -1542,12 +1542,12 @@ sk_connect_unix(sock *s, char *name, socklen_t namelen) if (fd < 0) return -2; - log(L_TRACE, "sk_connect_unix 3"); + log(L_TRACE "sk_connect_unix 3"); if (fcntl(fd, F_SETFL, O_NONBLOCK) < 0) return -3; - log(L_TRACE, "sk_connect_unix 4"); + log(L_TRACE "sk_connect_unix 4"); /* Path length checked in test_old_bird() */ memset(&sa, 0, sizeof(sa)); @@ -1558,7 +1558,7 @@ sk_connect_unix(sock *s, char *name, socklen_t namelen) if (connect(fd, (struct sockaddr *) &sa, sizeof(sa.sun_family) + namelen) < 0) return -4; - log(L_TRACE, "sk_connect_unix 5"); + log(L_TRACE "sk_connect_unix 5"); s->fd = fd; s->type = SK_UNIX; |