summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-antivirus')
-rw-r--r--app-antivirus/clamav/ChangeLog5
-rw-r--r--app-antivirus/clamav/files/clamd.rc4
2 files changed, 6 insertions, 3 deletions
diff --git a/app-antivirus/clamav/ChangeLog b/app-antivirus/clamav/ChangeLog
index 08b094468cca..0ac085b0fa59 100644
--- a/app-antivirus/clamav/ChangeLog
+++ b/app-antivirus/clamav/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-antivirus/clamav
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.10 2004/08/03 20:29:35 slarti Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/ChangeLog,v 1.11 2004/08/04 20:46:45 eradicator Exp $
+
+ 04 Aug 2004; Jeremy Huddleston <eradicator@gentoo.org> files/clamd.rc:
+ Fixed missing { in init script.
03 Aug 2004; Tom Martin <slarti@gentoo.org> :
Marked stable on ~amd64, see bug 58960.
diff --git a/app-antivirus/clamav/files/clamd.rc b/app-antivirus/clamav/files/clamd.rc
index dd39b54e1e4e..d5c882bb1f2d 100644
--- a/app-antivirus/clamav/files/clamd.rc
+++ b/app-antivirus/clamav/files/clamd.rc
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/files/clamd.rc,v 1.3 2004/07/30 18:12:02 lordvan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-antivirus/clamav/files/clamd.rc,v 1.4 2004/08/04 20:46:45 eradicator Exp $
depend() {
need net
@@ -12,7 +12,7 @@ start() {
if [ -S "/tmp/clamd" ]; then
rm -f /tmp/clamd
fi
- if [ -n "$CLAMD_LOG}" -a ! -f "${CLAMD_LOG}" ]; then
+ if [ -n "${CLAMD_LOG}" -a ! -f "${CLAMD_LOG}" ]; then
touch "${CLAMD_LOG}"
chown clamav:clamav "${CLAMD_LOG}"
CLAMD_OPTS="${CLAMD_OPTS}${CLAMD_LOG}"