diff options
author | drochner <drochner@pkgsrc.org> | 2009-10-27 19:41:11 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2009-10-27 19:41:11 +0000 |
commit | 8df945aa0a79d3d028e786c5d1b7d681e91e5697 (patch) | |
tree | 36dc7971a7141503dae62af48493d387448fceb5 /editors/obby/patches | |
parent | 69dbeb626f2b90447daa8da5c33ca5fd24016d13 (diff) | |
download | pkgsrc-8df945aa0a79d3d028e786c5d1b7d681e91e5697.tar.gz |
update to 0.4.7
changes:
-bugfixes
-added IPv6 support for mdns/avahi
-translation updates
Diffstat (limited to 'editors/obby/patches')
-rw-r--r-- | editors/obby/patches/patch-aa | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/editors/obby/patches/patch-aa b/editors/obby/patches/patch-aa new file mode 100644 index 00000000000..5ce47aeabd9 --- /dev/null +++ b/editors/obby/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1 2009/10/27 19:41:11 drochner Exp $ + +--- src/chat.cpp.orig 2009-06-18 15:23:44.000000000 +0200 ++++ src/chat.cpp +@@ -43,7 +43,7 @@ obby::chat::message::message(const std:: + obby::chat::message::message(const serialise::object& obj, + const user_table& user_table): + m_text(obj.get_required_attribute("text").get_value() ), +- m_timestamp(obj.get_required_attribute("timestamp").as<std::time_t>() ) ++ m_timestamp(obj.get_required_attribute("timestamp").as<int>() ) + { + } + |