about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorKristofer M White <me@kmwhite.net>2014-02-27 05:40:31 +0000
committerKristofer M White <me@kmwhite.net>2014-02-27 05:40:31 +0000
commitced6e7f411bb3e974344bdb72b7525bf63764b27 (patch)
treea1a8e4ec22ac20fe626c2313c41b9e67f8d11d77 /src/xmpp
parent8a54c5895dc4c989322611f2bdddf6b593b917d4 (diff)
downloadprofani-tty-ced6e7f411bb3e974344bdb72b7525bf63764b27.tar.gz
Making whitespace consistently spaces, not tabs
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/stanza.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c
index b89b164b..965b1671 100644
--- a/src/xmpp/stanza.c
+++ b/src/xmpp/stanza.c
@@ -266,7 +266,7 @@ stanza_create_room_join_presence(xmpp_ctx_t * const ctx,
         xmpp_stanza_t *pass = xmpp_stanza_new(ctx);
         xmpp_stanza_set_name(pass, "password");
         xmpp_stanza_t *text = xmpp_stanza_new(ctx);
-	xmpp_stanza_set_text(text, strdup(passwd));
+        xmpp_stanza_set_text(text, strdup(passwd));
         xmpp_stanza_add_child(pass, text);
         xmpp_stanza_add_child(x, pass);
         xmpp_stanza_release(text);