aboutsummaryrefslogtreecommitdiffstats
path: root/skype/skype.c
diff options
context:
space:
mode:
authorVMiklos <vmiklos@frugalware.org>2007-08-21 00:38:06 +0200
committerVMiklos <vmiklos@frugalware.org>2007-08-21 00:38:06 +0200
commit348a3a20a06744d919f7b0bf0d392d30511d50b1 (patch)
treed5c9e3396556767a91b0302267f43e144ed5f4dd /skype/skype.c
parent98bca363574144c9e488812c61249613fcb5e989 (diff)
use SET USERSTATUS on login/logout
Diffstat (limited to 'skype/skype.c')
-rw-r--r--skype/skype.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/skype/skype.c b/skype/skype.c
index 51c95913..88713e47 100644
--- a/skype/skype.c
+++ b/skype/skype.c
@@ -191,6 +191,9 @@ gboolean skype_start_stream( struct im_connection *ic )
buf = g_strdup_printf("SEARCH FRIENDS\n");
st = skype_write( ic, buf, strlen( buf ) );
g_free(buf);
+ buf = g_strdup_printf("SET USERSTATUS ONLINE\n");
+ skype_write( ic, buf, strlen( buf ) );
+ g_free(buf);
return st;
}