changeset 28885:7963477c2019

oscar: Pretty sure this was a typo; cookie is a char ** (passed in as arg).
author Paul Aurich <paul@darkrain42.org>
date Fri, 06 Nov 2009 03:59:55 +0000
parents 17617d892bc4
children 9d6e1327f614
files libpurple/protocols/oscar/clientlogin.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/oscar/clientlogin.c	Fri Nov 06 03:58:26 2009 +0000
+++ b/libpurple/protocols/oscar/clientlogin.c	Fri Nov 06 03:59:55 2009 +0000
@@ -205,7 +205,7 @@
 	if (use_tls)
 		*tls_certname = xmlnode_get_data_unescaped(tls_node);
 
-	if (*host == NULL || **host == '\0' || tmp == NULL || *tmp == '\0' || cookie == NULL || *cookie == '\0' ||
+	if (*host == NULL || **host == '\0' || tmp == NULL || *tmp == '\0' || *cookie == NULL || **cookie == '\0' ||
 			(use_tls && (*tls_certname == NULL || **tls_certname == '\0')))
 	{
 		char *msg;