comparison mcabber/src/screen.c @ 1488:b393b8cee171

Fix small mistake in changeset 7b36b91a4388
author Mikael Berthe <mikael@lilotux.net>
date Sun, 20 Apr 2008 21:39:07 +0200
parents f61ed2466f7c
children e9c71ce96dca
comparison
equal deleted inserted replaced
1487:f61ed2466f7c 1488:b393b8cee171
1032 if (line->flags & HBB_PREFIX_PGPCRYPT) 1032 if (line->flags & HBB_PREFIX_PGPCRYPT)
1033 cryptflag = '~'; 1033 cryptflag = '~';
1034 else if (line->flags & HBB_PREFIX_OTRCRYPT) 1034 else if (line->flags & HBB_PREFIX_OTRCRYPT)
1035 cryptflag = 'O'; 1035 cryptflag = 'O';
1036 else 1036 else
1037 cryptflag = '='; 1037 cryptflag = '-';
1038 g_snprintf(pref, preflen, "%s-%c> ", date, cryptflag); 1038 g_snprintf(pref, preflen, "%s-%c> ", date, cryptflag);
1039 } else if (line->flags & HBB_PREFIX_SPECIAL) { 1039 } else if (line->flags & HBB_PREFIX_SPECIAL) {
1040 strftime(date, 30, getspectprefix(), localtime(&line->timestamp)); 1040 strftime(date, 30, getspectprefix(), localtime(&line->timestamp));
1041 g_snprintf(pref, preflen, "%s ", date); 1041 g_snprintf(pref, preflen, "%s ", date);
1042 } else { 1042 } else {