aboutsummaryrefslogtreecommitdiff
path: root/sh/functions.sh
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-08-16 17:09:57 +0000
committerRoy Marples <roy@marples.name>2007-08-16 17:09:57 +0000
commiteba9b8ac144aaf86d6e5a80e48ccd70ae9515962 (patch)
treef19168f4df796fa770e1541913b4d0ea36e0dd90 /sh/functions.sh
parent6e5c8f8e5a02f624f2f8dd7d0b639d54e2993498 (diff)
Fully move esyslog into rc
Diffstat (limited to 'sh/functions.sh')
-rw-r--r--sh/functions.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/sh/functions.sh b/sh/functions.sh
index 18194862..5b4f8d91 100644
--- a/sh/functions.sh
+++ b/sh/functions.sh
@@ -17,26 +17,6 @@ eoutdent() {
return 0
}
-# void esyslog(char* priority, char* tag, char* message)
-#
-# use the system logger to log a message
-#
-esyslog() {
- local pri= tag=
-
- if [ -x /usr/bin/logger ] ; then
- pri="$1"
- tag="$2"
-
- shift 2
- [ -z "$*" ] && return 0
-
- /usr/bin/logger -p "${pri}" -t "${tag}" -- "$*"
- fi
-
- return 0
-}
-
# Safer way to list the contents of a directory,
# as it do not have the "empty dir bug".
#