diff options
author | Omar Polo <op@omarpolo.com> | 2022-04-08 13:52:35 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2022-04-08 13:52:35 +0000 |
commit | 54203115cd0121ee0e44f5e58202a4d8054b9c09 (patch) | |
tree | d28758a8d5ce0dd1448ba2e35e30de6d9bbe6b2d /gmid.c | |
parent | 9b6499535963c128de4a5a891a70b2636a54dad1 (diff) |
don't load the built-in list when using `types'
Diffstat (limited to 'gmid.c')
-rw-r--r-- | gmid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -251,7 +251,7 @@ static int listener_main(struct imsgbuf *ibuf) { drop_priv(); - if (load_default_mime(&conf.mime) == -1) + if (!conf.mime.skip_defaults && load_default_mime(&conf.mime) == -1) fatal("load_default_mime: %s", strerror(errno)); load_vhosts(); loop(ctx, sock4, sock6, ibuf); |