mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
416 B

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