summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2016-03-22 16:06:21 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2016-03-22 16:06:21 -0400
commite90c4a77b7783468048bc4bc49eb0423ae676a78 (patch)
tree9c26c8fa7dc4551eae417a587547efee79b5e4fa /util.c
parent51495e7579a1fcbdbfda868109c2128c2e933f9f (diff)
stuff
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/util.c b/util.c
index adc079a..772dbf8 100644
--- a/util.c
+++ b/util.c
@@ -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)