diff options
author | Kristofer M White <me@kmwhite.net> | 2014-02-27 05:40:31 +0000 |
---|---|---|
committer | Kristofer M White <me@kmwhite.net> | 2014-02-27 05:40:31 +0000 |
commit | ced6e7f411bb3e974344bdb72b7525bf63764b27 (patch) | |
tree | a1a8e4ec22ac20fe626c2313c41b9e67f8d11d77 /src/xmpp | |
parent | 8a54c5895dc4c989322611f2bdddf6b593b917d4 (diff) | |
download | profani-tty-ced6e7f411bb3e974344bdb72b7525bf63764b27.tar.gz |
Making whitespace consistently spaces, not tabs
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/stanza.c | 2 |
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); |