diff options
author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-06-19 18:12:17 -0400 |
---|---|---|
committer | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2008-06-19 18:12:17 -0400 |
commit | ad83c56cbab054c36ec854bf9cc2e0be530fce72 (patch) | |
tree | ddb375223b6eeba38b1dcd415fe4ebb7c4e49110 /src/common | |
parent | 1fa2912aac2636bc6a4d8eda089c0e285f88d141 (diff) | |
parent | 7019354a75ca19ffd2e10f2e2b3dc89b480156bd (diff) |
Merge commit 'jrollins/master'
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common | 13 |
1 files changed, 10 insertions, 3 deletions
@@ -18,10 +18,17 @@ ETC="/etc/monkeysphere" export ETC CACHE="/var/cache/monkeysphere" export CACHE +ERR=0 +export ERR ######################################################################## ### UTILITY FUNCTIONS +error() { + log "$1" + ERR=${2:-'1'} +} + failure() { echo "$1" >&2 exit ${2:-'1'} @@ -29,12 +36,12 @@ failure() { # write output to stderr log() { - echo -n "ms: " 1>&2 - echo "$@" 1>&2 + echo -n "ms: " >&2 + echo "$@" >&2 } loge() { - echo "$@" 1>&2 + echo "$@" >&2 } # cut out all comments(#) and blank lines from standard input |