CVSROOT: /cvs Module name: src Changes by: mill...@cvs.openbsd.org 2014/09/29 12:44:49
Modified files: usr.bin/at : at.c Log message: When setting environment variables in the atrun script, use the "export foo=bar" form instead of "foo=bar; export foo" since the former allows the shell to catch variable names that are not valid shell identifiers. This will cause /bin/sh to exit with an error (which gets mailed to the at user) and it will not run the script. OK miod@