print a deprecation message for the map rule

This commit is contained in:
Omar Polo 2022-04-07 16:15:55 +00:00
parent 4ee085938f
commit 6468868fee
1 changed files with 7 additions and 2 deletions

View File

@ -218,10 +218,15 @@ option : CHROOT string { conf.chroot = $2; }
| MIME STRING string {
yywarn("`mime MIME EXT' is deprecated and will be "
"removed in a future version, please use the new "
"syntax: `map MIME to-ext EXT'");
"`types' block.");
add_mime(&conf.mime, $2, $3);
}
| MAP string TOEXT string { add_mime(&conf.mime, $2, $4); }
| MAP string TOEXT string {
yywarn("`map mime to-ext' is deprecated and will be "
"removed in a future version, please use the new "
"`types' block.");
add_mime(&conf.mime, $2, $4);
}
| PORT NUM { conf.port = check_port_num($2); }
| PREFORK NUM { conf.prefork = check_prefork_num($2); }
| PROTOCOLS string {