about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-18 20:34:46 +0000
committerJames Booth <boothj5@gmail.com>2014-01-18 20:34:46 +0000
commit39e0782da8a45a40df280eda5abf9051a575a9fa (patch)
tree8c3b2dad8cbb56a8f13795bf64010b7d96d8bea5 /src/xmpp
parente7013408e5640cd41524a17c6f8f112eef1b54da (diff)
downloadprofani-tty-39e0782da8a45a40df280eda5abf9051a575a9fa.tar.gz
Fixed test compilation
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/connection.c2
-rw-r--r--src/xmpp/xmpp.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c
index dc015dd6..2bf5a304 100644
--- a/src/xmpp/connection.c
+++ b/src/xmpp/connection.c
@@ -132,7 +132,7 @@ _jabber_connect_with_account(const ProfAccount * const account)
 
 static jabber_conn_status_t
 _jabber_connect_with_details(const char * const jid,
-    const char * const passwd, const char * const altdomain, int port)
+    const char * const passwd, const char * const altdomain, const int port)
 {
     assert(jid != NULL);
     assert(passwd != NULL);
diff --git a/src/xmpp/xmpp.h b/src/xmpp/xmpp.h
index 86f585e4..5a331b04 100644
--- a/src/xmpp/xmpp.h
+++ b/src/xmpp/xmpp.h
@@ -85,7 +85,7 @@ void roster_init_module(void);
 // connection functions
 void (*jabber_init)(const int disable_tls);
 jabber_conn_status_t (*jabber_connect_with_details)(const char * const jid,
-    const char * const passwd, const char * const altdomain, int port);
+    const char * const passwd, const char * const altdomain, const int port);
 jabber_conn_status_t (*jabber_connect_with_account)(const ProfAccount * const account);
 void (*jabber_disconnect)(void);
 void (*jabber_shutdown)(void);