From 3aa34dd3b90e77f7b3db8ca1338f0a9bf5ace765 Mon Sep 17 00:00:00 2001
From: Amir Livneh <alivneh@fb.com>
Date: Thu, 20 Aug 2020 14:03:52 -0400
Subject: [PATCH] Fix handling of "*" as address in example server

---
 examples/server.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/server.cc b/examples/server.cc
index d7925022..19c41c60 100644
--- a/examples/server.cc
+++ b/examples/server.cc
@@ -2178,7 +2178,7 @@ int create_sock(Address &local_addr, const char *addr, const char *port,
   hints.ai_socktype = SOCK_DGRAM;
   hints.ai_flags = AI_PASSIVE;
 
-  if (strcmp("addr", "*") == 0) {
+  if (strcmp(addr, "*") == 0) {
     addr = nullptr;
   }
 
-- 
GitLab