aboutsummaryrefslogtreecommitdiffstats
path: root/otr.c
diff options
context:
space:
mode:
authorSven Moritz Hallberg <sm@khjk.org>2008-02-16 18:17:29 +0100
committerSven Moritz Hallberg <sm@khjk.org>2008-02-16 18:17:29 +0100
commitfd9fa52e0014459079444bd7bfff7a40eef4e27a (patch)
tree29dd5ffb3976535df5f038489b7032ec643a37ce /otr.c
parent4eb4c0f4beeb87e07bd6b10daed8fe8e48fb4206 (diff)
indent fingerprints in 'otr info <buddy>'
Diffstat (limited to 'otr.c')
-rw-r--r--otr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/otr.c b/otr.c
index 78fc688f..d30c8c93 100644
--- a/otr.c
+++ b/otr.c
@@ -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)