diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-09-27 11:58:50 +0100 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-09-27 11:58:50 +0100 |
commit | 3d42307058b3a1bc31138b53b21e7ed8bf681e1b (patch) | |
tree | c48c38dd212088136b61062fc6893fc608a60d99 | |
parent | 30a7ac413f66178c3cceae63baab487365ef8845 (diff) |
connection: fix comment placement in an if/else block
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r-- | src/connection.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/connection.c b/src/connection.c index dd9bf0ad0..9d774240b 100644 --- a/src/connection.c +++ b/src/connection.c @@ -2658,13 +2658,13 @@ iq_disco_cb (WockyPorter *porter, { features = gabble_presence_peek_caps (self->self_presence); data_forms = gabble_presence_peek_data_forms (self->self_presence); - /* If node is not NULL, it can be either a caps bundle as defined in the - * legacy XEP-0115 version 1.3 or an hash as defined in XEP-0115 version - * 1.5. Let's see if it's a verification string we've told the cache about. - */ } else { + /* If node is not NULL, it can be either a caps bundle as defined in the + * legacy XEP-0115 version 1.3 or an hash as defined in XEP-0115 version + * 1.5. Let's see if it's a verification string we've told the cache about. + */ info = gabble_presence_cache_peek_own_caps (self->presence_cache, suffix); } |