=================================================================== RCS file: /cvs/cvs/blind/config.c,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- blind/config.c 2022/03/18 20:54:01 1.2 +++ blind/config.c 2022/03/19 06:29:08 1.3 @@ -30,11 +30,8 @@ config_init(void) if ((cfg = calloc(1, sizeof(*cfg))) == NULL) return cfg; - if (strlcpy(cfg->bl_conf, BL_CONF, PATH_MAX) >= PATH_MAX) - log_fatal("config file exceeds PATH_MAX"); - if (strlcpy(cfg->bl_sock, BL_SOCK, PATH_MAX) >= PATH_MAX) - log_fatal("socket file exceeds PATH_MAX"); + log_fatal("socket file name exceeds PATH_MAX"); cfg->bl_ttl = BL_TTL;