From ca6bcec06e8fab9f6c03275495be9e2fb2c73b3d Mon Sep 17 00:00:00 2001 From: Ron Pedde Date: Thu, 3 Aug 2006 02:55:14 +0000 Subject: [PATCH] Inverted rendezvous test --- src/xml-rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xml-rpc.c b/src/xml-rpc.c index 4e999b3e..93b4ee02 100644 --- a/src/xml-rpc.c +++ b/src/xml-rpc.c @@ -504,7 +504,7 @@ void xml_get_stats(WS_CONNINFO *pwsc) { #ifndef WITHOUT_MDNS if(config.use_mdns) { - xml_output(pxml,"status",rend_running() ? "Stopped" : "Running"); /* ??? */ + xml_output(pxml,"status",rend_running() ? "Running" : "Stopped"); /* ??? */ } else { xml_output(pxml,"status","Disabled"); }