# HG changeset patch # User Sean Egan # Date 1190360306 0 # Node ID 06d09b7789921af9f4d2abf53133525f1ac4e971 # Parent a2cb2a2fe424663a367f07e1a7afbb1db023b1e2 Don't include OS information in jabber:iq:version requests diff -r a2cb2a2fe424 -r 06d09b778992 libpurple/protocols/jabber/iq.c --- a/libpurple/protocols/jabber/iq.c Fri Sep 21 03:24:29 2007 +0000 +++ b/libpurple/protocols/jabber/iq.c Fri Sep 21 07:38:26 2007 +0000 @@ -255,7 +255,7 @@ if(type && !strcmp(type, "get")) { GHashTable *ui_info; const char *ui_name = NULL, *ui_version = NULL; - +#if 0 if(!purple_prefs_get_bool("/plugins/prpl/jabber/hide_os")) { struct utsname osinfo; @@ -263,7 +263,7 @@ os = g_strdup_printf("%s %s %s", osinfo.sysname, osinfo.release, osinfo.machine); } - +#endif from = xmlnode_get_attrib(packet, "from"); id = xmlnode_get_attrib(packet, "id");