diff options
author | Sven Moritz Hallberg <sm@khjk.org> | 2008-02-16 18:17:29 +0100 |
---|---|---|
committer | Sven Moritz Hallberg <sm@khjk.org> | 2008-02-16 18:17:29 +0100 |
commit | fd9fa52e0014459079444bd7bfff7a40eef4e27a (patch) | |
tree | 29dd5ffb3976535df5f038489b7032ec643a37ce /otr.c | |
parent | 4eb4c0f4beeb87e07bd6b10daed8fe8e48fb4206 (diff) |
indent fingerprints in 'otr info <buddy>'
Diffstat (limited to 'otr.c')
-rw-r--r-- | otr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1221,13 +1221,13 @@ void show_fingerprints(irc_t *irc, ConnContext *ctx) trust=fp->trust; } if(fp == ctx->active_fingerprint) { - irc_usermsg(irc, " \x02%s (%s)\x02", human, trust); + irc_usermsg(irc, " \x02%s (%s)\x02", human, trust); } else { - irc_usermsg(irc, " %s (%s)", human, trust); + irc_usermsg(irc, " %s (%s)", human, trust); } } if(count==0) - irc_usermsg(irc, " (none)"); + irc_usermsg(irc, " (none)"); } Fingerprint *match_fingerprint(irc_t *irc, ConnContext *ctx, const char **args) |