comparison src/protocols/msn/switchboard.c @ 6917:85e39ec7f4cd

[gaim-migrate @ 7464] #if 0 the /tmp/msn-msg thing, since only I really want to see this enabled, until I get this all debugged. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 23 Sep 2003 21:51:01 +0000
parents 126e123bf065
children 083d1e4a9c78
comparison
equal deleted inserted replaced
6916:7d67e5238b40 6917:85e39ec7f4cd
651 651
652 return TRUE; 652 return TRUE;
653 } 653 }
654 654
655 ret = msn_servconn_write(swboard->servconn, buf, len); 655 ret = msn_servconn_write(swboard->servconn, buf, len);
656 #ifndef _WIN32 656
657 #if 0
657 /* Windows doesn't like Unix paths */ 658 /* Windows doesn't like Unix paths */
658 fp = fopen("/tmp/msn-msg", "wb"); 659 fp = fopen("/tmp/msn-msg", "wb");
659 fwrite(buf, 1, len, fp); 660 fwrite(buf, 1, len, fp);
660 fclose(fp); 661 fclose(fp);
661 #endif 662 #endif
663
662 g_free(buf); 664 g_free(buf);
663 665
664 return (ret > 0); 666 return (ret > 0);
665 } 667 }
666 668