about summary refs log tree commit diff stats
path: root/src/xmpp_conn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmpp_conn.c')
-rw-r--r--src/xmpp_conn.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/xmpp_conn.c b/src/xmpp_conn.c
index 6b37fe8b..07e592e7 100644
--- a/src/xmpp_conn.c
+++ b/src/xmpp_conn.c
@@ -542,13 +542,11 @@ jabber_get_presence(void)
     return jabber_conn.presence;
 }
 
+// returns pointer to status, owned by connection
 char *
 jabber_get_status(void)
 {
-    if (jabber_conn.status == NULL)
-        return NULL;
-    else
-        return strdup(jabber_conn.status);
+    return jabber_conn.status;
 }
 
 void