aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/discomanager.lua2
-rw-r--r--plugins/mod_version.lua4
2 files changed, 3 insertions, 3 deletions
diff --git a/core/discomanager.lua b/core/discomanager.lua
index ce0010d8..a733a834 100644
--- a/core/discomanager.lua
+++ b/core/discomanager.lua
@@ -10,7 +10,7 @@ local print = print;
do
helper:addDiscoInfoHandler("*host", function(reply, to, from, node)
if hosts[to] then
- reply:tag("identity", {category="server", type="im", name="lxmppd"}):up();
+ reply:tag("identity", {category="server", type="im", name="Prosody"}):up();
return true;
end
end);
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua
index 11278a53..3c0d045a 100644
--- a/plugins/mod_version.lua
+++ b/plugins/mod_version.lua
@@ -10,8 +10,8 @@ require "core.discomanager".set("version", xmlns_version);
local function handle_version_request(session, stanza)
if stanza.attr.type == "get" then
session.send(st.reply(stanza):query(xmlns_version)
- :tag("name"):text("lxmppd"):up()
- :tag("version"):text("pre-alpha"):up()
+ :tag("name"):text("Prosody"):up()
+ :tag("version"):text("0.1"):up()
:tag("os"):text("the best operating system ever!"));
end
end