about summary refs log tree commit diff stats
path: root/src/xmpp/connection.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-02-10 11:31:31 +0000
committerJames Booth <boothj5@gmail.com>2013-02-10 11:31:31 +0000
commit591f8a8dbf10b7bd64825cfea63a7ac21b6c89e2 (patch)
treed713fc767d6855e002a9f6fd107527c2c70aec36 /src/xmpp/connection.c
parentec78914044978fee1119c5a905c6a8fdce03a476 (diff)
downloadprofani-tty-591f8a8dbf10b7bd64825cfea63a7ac21b6c89e2.tar.gz
Renamed jabber_presence_t->presence_t
Diffstat (limited to 'src/xmpp/connection.c')
-rw-r--r--src/xmpp/connection.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c
index 2687fa70..7eb84076 100644
--- a/src/xmpp/connection.c
+++ b/src/xmpp/connection.c
@@ -47,7 +47,7 @@ static struct _jabber_conn_t {
     xmpp_ctx_t *ctx;
     xmpp_conn_t *conn;
     jabber_conn_status_t conn_status;
-    jabber_presence_t presence_type;
+    presence_t presence_type;
     char *presence_message;
     int priority;
     int tls_disabled;
@@ -228,7 +228,7 @@ jabber_get_jid(void)
     return xmpp_conn_get_jid(jabber_conn.conn);
 }
 
-jabber_presence_t
+presence_t
 jabber_get_presence_type(void)
 {
     return jabber_conn.presence_type;
@@ -247,7 +247,7 @@ jabber_get_account_name(void)
 }
 
 void
-connection_set_presence_type(const jabber_presence_t presence_type)
+connection_set_presence_type(const presence_t presence_type)
 {
     jabber_conn.presence_type = presence_type;
 }