From: Todd C. Miller Date: Wed, 21 Jan 2004 21:58:24 +0000 (+0000) Subject: Add _PATH_TMP, _PATH_VARTMP and _PATH_USRTMP X-Git-Tag: SUDO_1_6_8~221 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cc7cfa707e69a0b71f9e8b9ca4ebf56abda75c25;p=sudo Add _PATH_TMP, _PATH_VARTMP and _PATH_USRTMP --- diff --git a/pathnames.h.in b/pathnames.h.in index b00b513bd..efbbae82f 100644 --- a/pathnames.h.in +++ b/pathnames.h.in @@ -113,3 +113,15 @@ #ifndef _PATH_BSHELL #undef _PATH_BSHELL #endif /* _PATH_BSHELL */ + +#ifndef _PATH_TMP +#define _PATH_TMP "/tmp/" +#endif /* _PATH_TMP */ + +#ifndef _PATH_VARTMP +#define _PATH_VARTMP "/var/tmp/" +#endif /* _PATH_VARTMP */ + +#ifndef _PATH_USRTMP +#define _PATH_USRTMP "/usr/tmp/" +#endif /* _PATH_USRTMP */