summaryrefslogtreecommitdiff
blob: 3d1a1720a1843712ab634602a010e1a13e043761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# fix skiping of "" in word[] array.
# Side effect: fixes DCC RESUME with mIRC >= 6.1
--- xchat-2.0.5/src/common/outbound.c	2003-09-05 21:12:52.000000000 +1000
+++ xchat-2.0.6/src/common/outbound.c	2003-10-16 14:00:52.000000000 +1000
@@ -185,8 +185,10 @@
 			if (!handle_quotes)
 				goto def;
 			if (quote)
+			{
 				quote = FALSE;
-			else
+				space = FALSE;
+			} else
 				quote = TRUE;
 			cmd++;
 			break;