From 3af457257c8e7e54706af6c85993ce5352d4614e Mon Sep 17 00:00:00 2001 From: Steven Morgan Date: Tue, 5 Jan 2016 13:13:47 -0500 Subject: [PATCH] bb11467 - fix embedded http links. --- docs/man/freshclam.conf.5.in | 2 +- freshclam/manager.c | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/man/freshclam.conf.5.in b/docs/man/freshclam.conf.5.in index cc4fee3e6..9960ec2e7 100644 --- a/docs/man/freshclam.conf.5.in +++ b/docs/man/freshclam.conf.5.in @@ -202,7 +202,7 @@ Country of origin of malware/detection statistics (for statistical purposes only Default: disabled .TP \fBDetectionStatsHostID STRING\fR -This option enables support for our "Personal Statistics" service. When this option is enabled, the information on malware detected by your clamd installation is made available to you through our website. To get your HostID, log on http://www.stats.clamav.net and add a new host to your host list. Once you have the HostID, uncomment this option and paste the HostID here. As soon as your freshclam starts submitting information to our stats collecting service, you will be able to view the statistics of this clamd installation by logging into http://www.stats.clamav.net with the same credentials you used to generate the HostID. For more information refer to: http://www.clamav.net/support/faq/faq-cctts/. This feature requires SubmitDetectionStats to be enabled. +This option enables support for our "Personal Statistics" service. When this option is enabled, the information on malware detected by your clamd installation is made available to you through our website. To get your HostID, log on http://www.stats.clamav.net and add a new host to your host list. Once you have the HostID, uncomment this option and paste the HostID here. As soon as your freshclam starts submitting information to our stats collecting service, you will be able to view the statistics of this clamd installation by logging into http://www.stats.clamav.net with the same credentials you used to generate the HostID. For more information refer to: http://www.clamav.net/documents/clamav-community-threat-tracking-system/. This feature requires SubmitDetectionStats to be enabled. .br Default: disabled .TP diff --git a/freshclam/manager.c b/freshclam/manager.c index 9060d7dcb..239eb8849 100644 --- a/freshclam/manager.c +++ b/freshclam/manager.c @@ -2171,7 +2171,8 @@ updatedb (const char *dbname, const char *hostname, char *ip, int *signo, logg ("^Your ClamAV installation is OUTDATED!\n"); logg ("^Current functionality level = %d, recommended = %d\n", flevel, current->fl); - logg ("DON'T PANIC! Read http://www.clamav.net/support/faq\n"); + logg ("DON'T PANIC! Read http://www.clamav.net/documents/upgrading-clamav\n"); + } *signo += current->sigs; @@ -2491,7 +2492,7 @@ downloadmanager (const struct optstruct *opts, const char *hostname, { logg ("^Your ClamAV installation is OUTDATED!\n"); logg ("^Local version: %s Recommended version: %s\n", vstr, newver); - logg ("DON'T PANIC! Read http://www.clamav.net/support/faq\n"); + logg ("DON'T PANIC! Read http://www.clamav.net/documents/upgrading-clamav\n"); outdated = 1; } }