diff src/html.c @ 2060:2fe660574083

[gaim-migrate @ 2070] Yo committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Wed, 20 Jun 2001 16:56:34 +0000
parents 060161a5d5f8
children b66aca8e8dce
line wrap: on
line diff
--- a/src/html.c	Mon Jun 18 19:18:18 2001 +0000
+++ b/src/html.c	Wed Jun 20 16:56:34 2001 +0000
@@ -80,18 +80,18 @@
 
 	if (strstr(url, "http://"))
 		g_snprintf(scan_info, sizeof(scan_info),
-			   "http://%%[A-Za-z0-9.]:%%[0-9]/%%[A-Za-z0-9.~_-/&%%?]");
+			   "http://%%[A-Za-z0-9.]:%%[0-9]/%%[A-Za-z0-9.~_-/&%%?=+]");
 	else
 		g_snprintf(scan_info, sizeof(scan_info),
-			   "%%[A-Za-z0-9.]:%%[0-9]/%%[A-Za-z0-9.~_-/&%%?]");
+			   "%%[A-Za-z0-9.]:%%[0-9]/%%[A-Za-z0-9.~_-/&%%?=+^]");
 	f = sscanf(url, scan_info, test.address, port, test.page);
 	if (f == 1) {
 		if (strstr(url, "http://"))
 			g_snprintf(scan_info, sizeof(scan_info),
-				   "http://%%[A-Za-z0-9.]/%%[A-Za-z0-9.~_-/&%%?]");
+				   "http://%%[A-Za-z0-9.]/%%[A-Za-z0-9.~_-/&%%?=+^]");
 		else
 			g_snprintf(scan_info, sizeof(scan_info),
-				   "%%[A-Za-z0-9.]/%%[A-Za-z0-9.~_-/&%%?]");
+				   "%%[A-Za-z0-9.]/%%[A-Za-z0-9.~_-/&%%?=+^]");
 		f = sscanf(url, scan_info, test.address, test.page);
 		g_snprintf(port, sizeof(test.port), "80");
 		port[2] = 0;