svn commit: r322970 - in head/security: clamav-devel/files clamav/files

Renato Botelho garga at FreeBSD.org
Sat Jul 13 20:40:51 UTC 2013


Author: garga
Date: Sat Jul 13 20:40:50 2013
New Revision: 322970
URL: http://svnweb.freebsd.org/changeset/ports/322970

Log:
  Fix error message that is showing a wrong dir
  
  Reported by:	Will McCutcheon <will at toyingwithfate.com>

Modified:
  head/security/clamav-devel/files/clamav-clamd.in
  head/security/clamav/files/clamav-clamd.in

Modified: head/security/clamav-devel/files/clamav-clamd.in
==============================================================================
--- head/security/clamav-devel/files/clamav-clamd.in	Sat Jul 13 20:27:20 2013	(r322969)
+++ head/security/clamav-devel/files/clamav-clamd.in	Sat Jul 13 20:40:50 2013	(r322970)
@@ -35,7 +35,7 @@ start_precmd=clamav_clamd_precmd
 
 clamav_clamd_precmd() {
 	if [ ! -f %%DBDIR%%/main.cvd -a ! -f %%DBDIR%%/main.cld ];then
-		echo "Missing %%DBDIR%%/clamav/*.cvd or *.cld files.  You must run freshclam first"
+		echo "Missing %%DBDIR%%/*.cvd or *.cld files.  You must run freshclam first"
 		exit 1
 	fi
 }

Modified: head/security/clamav/files/clamav-clamd.in
==============================================================================
--- head/security/clamav/files/clamav-clamd.in	Sat Jul 13 20:27:20 2013	(r322969)
+++ head/security/clamav/files/clamav-clamd.in	Sat Jul 13 20:40:50 2013	(r322970)
@@ -36,7 +36,7 @@ start_precmd=clamav_clamd_precmd
 #clamav .93 won't start without a valid main.c[vl]d file
 clamav_clamd_precmd() {
 	if [ ! -f %%DBDIR%%/main.cvd -a ! -f %%DBDIR%%/main.cld ];then
-		echo "Missing %%DBDIR%%/clamav/*.cvd or *.cld files.  You must run freshclam first"
+		echo "Missing %%DBDIR%%/*.cvd or *.cld files.  You must run freshclam first"
 		exit 1
 	fi
 }


More information about the svn-ports-head mailing list