Author: ArcRiley Date: 2009-02-25 06:35:30 -0500 (Wed, 25 Feb 2009) New Revision: 1520
Modified: trunk/concordance/src/sockets/Client.c Log: fixed calls to _reply_streamError Modified: trunk/concordance/src/sockets/Client.c =================================================================== --- trunk/concordance/src/sockets/Client.c 2009-02-25 10:44:39 UTC (rev 1519) +++ trunk/concordance/src/sockets/Client.c 2009-02-25 11:35:30 UTC (rev 1520) @@ -387,7 +387,7 @@ * error is "<bad-format/>" */ if (version == NULL) { - error = "<unsupported-version/>"; + error = "unsupported-version"; buff = g_string_append(buff, ">"); } else if (g_strrstr(version, ".") != NULL) { @@ -399,14 +399,14 @@ buff = g_string_append(buff, " version='1.0'>"); } else { - error = "<unsupported-version/>"; + error = "unsupported-version"; buff = g_string_append(buff, " version='1.0'>"); } } g_strfreev(versions); } else { - error = "<bad-format/>"; + error = "bad-format"; buff = g_string_append(buff, " version='1.0'>"); } _______________________________________________ PySoy-SVN mailing list PySoy-SVN@pysoy.org http://www.pysoy.org/mailman/listinfo/pysoy-svn