diff options
author | kraxel <kraxel> | 2007-04-25 12:59:18 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2007-04-25 12:59:18 +0000 |
commit | 9f355bea4ff551b59f368100e892eeb10eef5c21 (patch) | |
tree | 7553c3ea2a78a619071183954a55e019481cea47 | |
parent | 7454161b7b588927e5eeca7b97e770d19c1dd61d (diff) | |
download | xenwatch-9f355bea4ff551b59f368100e892eeb10eef5c21.tar.gz |
s/host/addr/
-rw-r--r-- | mdns.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -335,10 +335,10 @@ static void resolve_callback(AvahiServiceResolver *r, path = (unsigned char*)""; if (defport != port) snprintf(url, sizeof(url), "%s://%s:%d%s", - proto, host_name, port, path); + proto, a /* host_name */, port, path); else snprintf(url, sizeof(url), "%s://%s%s", - proto, host_name, path); + proto, a /* host_name */, path); gtk_list_store_set(mdns->store, &iter, ST_COL_URL, url, -1); |