diff options
author | James Booth <boothj5@gmail.com> | 2013-01-28 21:17:00 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2013-01-28 21:17:00 +0000 |
commit | cb24ba8be175e0ddde93a0e01c286ee7cab2b241 (patch) | |
tree | d4910e029098c54d84116d11357c2ea47230e9d3 /src/xmpp_conn.c | |
parent | bf1cf0444702566d5b77a4e4e195ef7c8341a185 (diff) | |
download | profani-tty-cb24ba8be175e0ddde93a0e01c286ee7cab2b241.tar.gz |
jabber_get_status no longer returns newly allocated string
Diffstat (limited to 'src/xmpp_conn.c')
-rw-r--r-- | src/xmpp_conn.c | 6 |
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 |