diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-03-22 16:06:21 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-03-22 16:06:21 -0400 |
commit | e90c4a77b7783468048bc4bc49eb0423ae676a78 (patch) | |
tree | 9c26c8fa7dc4551eae417a587547efee79b5e4fa /util.c | |
parent | 51495e7579a1fcbdbfda868109c2128c2e933f9f (diff) |
stuff
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -51,13 +51,11 @@ int get_fd(const char *addr) { const char *e = getenv("LISTEN_FDNAMES"); if (e == NULL) return -ENOTCONN; - error(0, 0, "LISTEN_FDNAMES=\"%s\"", e); char *names = strdupa(e); char *name = NULL; int i = -1; do { name = strsep(&names, ":"); - error(0, 0, "name=\"%s\"", name); i++; } while (name != NULL && strcmp(name, addr) != 0); if (name == NULL) |