changeset 15932:a26cbbd1409c

Minor cleanup
author Mark Doliner <mark@kingant.net>
date Mon, 26 Mar 2007 04:59:53 +0000
parents c2cce5daa8ec
children b449dc6b8a20
files libpurple/protocols/bonjour/bonjour.c libpurple/protocols/bonjour/issues.txt
diffstat 2 files changed, 8 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/bonjour/bonjour.c	Mon Mar 26 04:51:25 2007 +0000
+++ b/libpurple/protocols/bonjour/bonjour.c	Mon Mar 26 04:59:53 2007 +0000
@@ -460,7 +460,7 @@
 	else if (((fullname = getlogin()) != NULL) && (fullname[0] != '\0'))
 		;
 	else
-		fullname = _("John Noname"); 
+		fullname = _("Purple Person");
 	/* Make sure fullname is valid UTF-8.  If not, try to convert it. */
 	if (!g_utf8_validate(fullname, -1, NULL))
 	{
@@ -548,7 +548,8 @@
 	/* Try to figure out a good host name to use */
 	/* TODO: Avoid 'localhost,' if possible */
 	if (gethostname(hostname, 255) != 0) {
-		purple_debug_warning("bonjour", "Error %d when getting host name.  Using \"localhost.\"\n", errno);
+		purple_debug_warning("bonjour", "Error when getting host name: %s.  Using \"localhost.\"\n",
+				strerror(errno));
 		strcpy(hostname, "localhost");
 	}
 	default_hostname = g_strdup(hostname);
--- a/libpurple/protocols/bonjour/issues.txt	Mon Mar 26 04:51:25 2007 +0000
+++ b/libpurple/protocols/bonjour/issues.txt	Mon Mar 26 04:59:53 2007 +0000
@@ -2,17 +2,8 @@
 ============= Known issues ===============
 ==========================================
 
-(1) Messages are limited in length (5000 char) <-- FIXED
-(2) Messages formated by Gaim didn't work <-- FIXED
-(3) iChat sends the size in points, Gaim wants a 1..7 range <-- FIXED Gaim2iChat (iChat2Gaim left)
-(4) When the other end closes the socket without sending the end of stream, Gaim crashes and coredump <-- FIXED
-(5) I18n
-(6) Status changes don't work
-(7) When the conversation is closed in Gaim with the X button, we don't send the end of stream <-- FIXED
-(8) The server socket is not reusable, after an error, you cannot connect for a while <-- FIXED
-(9) Avatars
-(10) File transfers
-(11) Typing notifications
-(12) Gaim HTML syntax is not shown properly <-- FIXED
-(13) Strange messages creates coredump <-- FIXED
-(14) Check if it works on win32
+* Status changes don't work
+* Avatars
+* File transfers
+* Typing notifications
+* Check if it works on win32