From: Keith Bostic Date: Wed, 22 Jul 1987 01:13:58 +0000 (-0800) Subject: added TMP_DIR; create errors directory if necessary X-Git-Tag: BSD-4_3_Net_1-Snapshot-Development~3952 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/f16d4b82a325cc2d85cbe0fd9c2f629b7a1c5b83 added TMP_DIR; create errors directory if necessary SCCS-vsn: libexec/bugfiler/bug.h 5.4 --- diff --git a/usr/src/libexec/bugfiler/bug.h b/usr/src/libexec/bugfiler/bug.h index 740578f7da..7a43d6d0c9 100644 --- a/usr/src/libexec/bugfiler/bug.h +++ b/usr/src/libexec/bugfiler/bug.h @@ -12,10 +12,11 @@ /* * the METOO definition has the bugfiler exit with an error (-1) status - * if there's a problem. Sendmail then mails off a copy of the problem - * mail to "owner-bugs". This is great if you would have otherwise lost - * the bug report. It's not so great if you get a whole bunch of mail - * that you really don't want. + * if there's a problem. This causes sendmail to send off a copy of the + * report (as failed mail) to the "owner" of the mail alias that executed + * the bugfiler. This is great if you would have otherwise lost the bug + * report. It's not so great if you get a whole bunch of mail that you + * really don't want. */ #define METOO @@ -26,6 +27,7 @@ #define LOCK_FILE "bug:lock" /* lock file name */ #define SUMMARY_FILE "summary" /* summary file */ #define TMP_BUG "errors/BUG_XXXXXX" /* tmp bug report */ +#define TMP_DIR "errors" /* tmp directory */ #define CHN (char *)NULL /* null arg string */ #define COMMENT '#' /* comment in redist file */