Bump liberty
This commit is contained in:
@@ -2392,7 +2392,7 @@ static void
|
||||
formatter_parse_nick (struct formatter *self, char *s)
|
||||
{
|
||||
char *nick = irc_cut_nickname (s);
|
||||
int color = str_map_hash (nick, strlen (nick)) % 8;
|
||||
int color = siphash_wrapper (nick, strlen (nick)) % 8;
|
||||
|
||||
// We always use the default color for ourselves
|
||||
if (self->s && irc_is_this_us (self->s, nick))
|
||||
|
||||
3
kike.c
3
kike.c
@@ -3951,6 +3951,9 @@ daemonize (struct server_context *ctx)
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
// Need to call this first as all string maps depend on it
|
||||
siphash_wrapper_randomize ();
|
||||
|
||||
static const struct opt opts[] =
|
||||
{
|
||||
{ 'd', "debug", NULL, 0, "run in debug mode (do not daemonize)" },
|
||||
|
||||
2
liberty
2
liberty
Submodule liberty updated: 0058c1f457...02708608a9
Reference in New Issue
Block a user