added msmktempfile; got rid of /dev/stdin assumption in ssh_proxycommand for portability
[monkeysphere.git] / src / share / common
index 1c16ac6218ba1a7a85bc2984477b75d122ac7366..bfe73a37bc6961dc0ac9d2a9eb445460743c63bf 100644 (file)
@@ -149,9 +149,14 @@ cutline() {
     head --line="$1" "$2" | tail -1
 }
 
-# make a temporary directly
+# make a temporary directory
 msmktempdir() {
-    mktemp -d ${TMPDIR:-/tmp}/tmp.XXXXXXXXXX
+    mktemp -d ${TMPDIR:-/tmp}/monkeysphere.XXXXXXXXXX
+}
+
+# make a temporary file
+msmktempfile() {
+    mktemp ${TMPDIR:-/tmp}/monkeysphere.XXXXXXXXXX
 }
 
 # this is a wrapper for doing lock functions.