From 9dd739f82fe0e17329c0709010a194c692cf9aa6 Mon Sep 17 00:00:00 2001 From: Ian Chen Date: Tue, 6 Aug 2024 19:35:36 -0700 Subject: [PATCH] IGN _IP -> GZ_IP (#515) Signed-off-by: Ian Chen --- include/gz/transport/Discovery.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/gz/transport/Discovery.hh b/include/gz/transport/Discovery.hh index 161ebc4e..c9665a3f 100644 --- a/include/gz/transport/Discovery.hh +++ b/include/gz/transport/Discovery.hh @@ -171,11 +171,11 @@ namespace gz // If the IP address that we're selecting as the main IP address of // the host is invalid, we change it to 127.0.0.1 . - // This is probably because IGN_IP is set to a wrong value. + // This is probably because GZ_IP is set to a wrong value. if (netIface == this->hostAddr && !succeed) { this->RegisterNetIface("127.0.0.1"); - std::cerr << "Did you set the environment variable IGN_IP with a " + std::cerr << "Did you set the environment variable GZ_IP with a " << "correct IP address? " << std::endl << " [" << netIface << "] seems an invalid local IP " << "address." << std::endl