CVSROOT: /cvs Module name: src Changes by: mill...@cvs.openbsd.org 2023/03/18 19:43:11
Modified files: usr.sbin/smtpd : mda_variables.c Log message: Fix a potential NULL dereference in the unpriv child expanding %{mda}. It is not legal to use %{mda} in anything but an mda wrapper. mda_expand_token() will now return an error when %{mda} is used and mda_command is NULL. OK op@