Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jul 2013 20:40:50 +0000 (UTC)
From:      Renato Botelho <garga@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r322970 - in head/security: clamav-devel/files clamav/files
Message-ID:  <201307132040.r6DKeoIc031131@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307132040.r6DKeoIc031131>