summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJameson Graef Rollins <jrollins@phys.columbia.edu>2008-06-23 19:42:21 -0400
committerJameson Graef Rollins <jrollins@phys.columbia.edu>2008-06-23 19:42:21 -0400
commit9f64c356556520185325d20a8293ffa839c712bf (patch)
tree6f2f88eb6d721a467d02c92f1c20052781cf9c90 /src
parent91bf57bac7bed32937c13595044158007e7b5812 (diff)
don't unnecessarily export ERR
Diffstat (limited to 'src')
-rwxr-xr-xsrc/monkeysphere1
-rwxr-xr-xsrc/monkeysphere-server2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/monkeysphere b/src/monkeysphere
index 1368a80..11254e7 100755
--- a/src/monkeysphere
+++ b/src/monkeysphere
@@ -26,7 +26,6 @@ GREP_OPTIONS=
# default return code
ERR=0
-export ERR
########################################################################
# FUNCTIONS
diff --git a/src/monkeysphere-server b/src/monkeysphere-server
index e099a74..369555c 100755
--- a/src/monkeysphere-server
+++ b/src/monkeysphere-server
@@ -21,7 +21,7 @@ DATE=$(date -u '+%FT%T')
# unset some environment variables that could screw things up
GREP_OPTIONS=
-# assuming other problems don't crop up, we'll return 0 as success
+# default return code
ERR=0
########################################################################