From: <dat...@us...> - 2006-08-11 00:55:24
|
Revision: 16693 Author: datallah Date: 2006-08-10 17:55:18 -0700 (Thu, 10 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16693&view=rev Log Message: ----------- Fix CID 111 (which never would actually happen, but this is cleaner and clearer) Modified Paths: -------------- trunk/src/protocols/msn/nexus.c Modified: trunk/src/protocols/msn/nexus.c =================================================================== --- trunk/src/protocols/msn/nexus.c 2006-08-11 00:21:26 UTC (rev 16692) +++ trunk/src/protocols/msn/nexus.c 2006-08-11 00:55:18 UTC (rev 16693) @@ -422,8 +422,8 @@ if ((da_login = strstr(base, "DALogin=")) != NULL) { - if ((da_login = strchr(da_login, '=')) != NULL) - da_login++; + /* skip over "DALogin=" */ + da_login += 8; if ((c = strchr(da_login, ',')) != NULL) *c = '\0'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |