diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-21 01:09:29 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-21 01:09:29 +0100 |
commit | 75c3ff711698ea069f33ffc460c2e7aec650e875 (patch) | |
tree | 41f3f229b05ba24570f2094896d910e44ba2d86b /protocols/purple/purple.c | |
parent | e7dc02a89d846d27b63719a5093c2e2a295fc232 (diff) |
Fixed sending with proper filenames by creating a temporary directory with
the file in it; protocol modules are mostly hardcoded to use the filename
from the filesystem with no way to override this.
Also improved robustness a little bit.
Diffstat (limited to 'protocols/purple/purple.c')
-rw-r--r-- | protocols/purple/purple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index fee93b27..799a8a80 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -840,7 +840,7 @@ static void purple_ui_init() purple_request_set_ui_ops( &bee_request_uiops ); purple_notify_set_ui_ops( &bee_notify_uiops ); purple_xfers_set_ui_ops( &bee_xfer_uiops ); - //purple_debug_set_ui_ops( &bee_debug_uiops ); + purple_debug_set_ui_ops( &bee_debug_uiops ); } void purple_initmodule() |