diff options
author | Mark Sapiro <mark@msapiro.net> | 2009-09-27 14:17:48 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2009-09-27 14:17:48 -0700 |
commit | 167b25769c95b29c1e4c419905aa24d9a50e2e9f (patch) | |
tree | 8060b77ec2a5137877049fbd944b372492ea21c9 | |
parent | 92e0e21662583143207c739e6badec6ffa5ccd7d (diff) | |
download | mailman2-167b25769c95b29c1e4c419905aa24d9a50e2e9f.tar.gz mailman2-167b25769c95b29c1e4c419905aa24d9a50e2e9f.tar.xz mailman2-167b25769c95b29c1e4c419905aa24d9a50e2e9f.zip |
Fix a typo
-rw-r--r-- | contrib/mmdsr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/mmdsr b/contrib/mmdsr index e0bcd00a..b4d8ea9e 100644 --- a/contrib/mmdsr +++ b/contrib/mmdsr @@ -312,8 +312,8 @@ if [ "${SLEEPTIME}" != "" -a "${RCPTS}x" != "${SENDER}x" ] ; then fi fi -TMP=`$MKTEMP -d $TMPDIR` -TMPLOG=`$MKTEMP -d $TMPDIR` +TMP=`$MKTEMP -p $TMPDIR` +TMPLOG=`$MKTEMP -p $TMPDIR` if [ "${RCPTS}x" != "x" ] ; then echo "From: ${SENDER}" >> $TMP |