Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/main/main.c')
-rw-r--r--agent/tcf/main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/tcf/main/main.c b/agent/tcf/main/main.c
index bbcfd73f..d9aedc76 100644
--- a/agent/tcf/main/main.c
+++ b/agent/tcf/main/main.c
@@ -476,7 +476,7 @@ int main(int argc, char ** argv) {
for (i = 0; i < url_cnt; i++) {
if (ini_server(url_arr[i], proto, bcg) < 0) {
- fprintf(stderr, "Cannot create listening port: %s\n", errno_to_str(errno));
+ fprintf(stderr, "Cannot create listening port %s: %s\n", url_arr[i], errno_to_str(errno));
exit(1);
}
}

Back to the top