Better referral for bug reports

git-svn: trunk@1985
remotes/push_mirror/metadata
Nigel Horne 19 years ago
parent 3e55fc76aa
commit c88c200fa3
  1. 5
      clamav-devel/ChangeLog
  2. 5
      clamav-devel/clamav-milter/clamav-milter.c
  3. 450
      clamav-devel/clamav-milter/clamav-milter.po
  4. 4
      clamav-devel/libclamav/blob.c
  5. 4
      clamav-devel/libclamav/mbox.c
  6. 4
      clamav-devel/libclamav/tnef.c

@ -1,3 +1,8 @@
Fri May 19 10:56:48 BST 2006 (njh)
---------------------------------
* various: Refer to the webpage for submitting bug reports, not just an
email address
Thu May 18 13:25:58 CEST 2006 (tk) Thu May 18 13:25:58 CEST 2006 (tk)
---------------------------------- ----------------------------------
* libclamav: minor code cleanup * libclamav: minor code cleanup

@ -23,7 +23,7 @@
* *
* For installation instructions see the file INSTALL that came with this file * For installation instructions see the file INSTALL that came with this file
*/ */
static char const rcsid[] = "$Id: clamav-milter.c,v 1.241 2006/05/12 17:15:39 nigelhorne Exp $"; static char const rcsid[] = "$Id: clamav-milter.c,v 1.242 2006/05/19 09:54:05 njh Exp $";
#define CM_VERSION "devel-120506" #define CM_VERSION "devel-120506"
@ -515,7 +515,7 @@ help(void)
puts(_("\t--debug-level=n\t\t-x n\tSets the debug level to 'n'.")); puts(_("\t--debug-level=n\t\t-x n\tSets the debug level to 'n'."));
#endif #endif
puts(_("\nFor more information type \"man clamav-milter\".")); puts(_("\nFor more information type \"man clamav-milter\"."));
puts(_("Report bugs to bugs@clamav.net.")); puts(_("For bug reports, please refer to http://www.clamav.net/bugs.html#pagestart"));
} }
int int
@ -4477,6 +4477,7 @@ setsubject(SMFICTX *ctx, const char *virusname)
* TODO: gethostbyname_r is non-standard so different operating * TODO: gethostbyname_r is non-standard so different operating
* systems do it in different ways. Need more examples * systems do it in different ways. Need more examples
* Perhaps we could use res_search()? * Perhaps we could use res_search()?
* Perhaps we could use http://www.chiark.greenend.org.uk/~ian/adns/
* *
* Returns 0 for success * Returns 0 for success
*/ */

File diff suppressed because it is too large Load Diff

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA. * MA 02110-1301, USA.
*/ */
static char const rcsid[] = "$Id: blob.c,v 1.46 2006/05/03 15:41:44 nigelhorne Exp $"; static char const rcsid[] = "$Id: blob.c,v 1.47 2006/05/19 09:56:12 njh Exp $";
#if HAVE_CONFIG_H #if HAVE_CONFIG_H
#include "clamav-config.h" #include "clamav-config.h"
@ -365,7 +365,7 @@ fileblobDestroy(fileblob *fb)
} else if(fb->b.data) { } else if(fb->b.data) {
free(fb->b.data); free(fb->b.data);
if(fb->b.name) { if(fb->b.name) {
cli_errmsg("fileblobDestroy: %s not saved: report to bugs@clamav.net\n", fb->b.name); cli_errmsg("fileblobDestroy: %s not saved: refer to http://www.clamav.net/bugs.html#pagestart\n", fb->b.name);
free(fb->b.name); free(fb->b.name);
} else } else
cli_errmsg("fileblobDestroy: file not saved (%lu bytes): report to bugs@clamav.net\n", fb->b.len); cli_errmsg("fileblobDestroy: file not saved (%lu bytes): report to bugs@clamav.net\n", fb->b.len);

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA. * MA 02110-1301, USA.
*/ */
static char const rcsid[] = "$Id: mbox.c,v 1.302 2006/05/18 11:30:09 njh Exp $"; static char const rcsid[] = "$Id: mbox.c,v 1.303 2006/05/19 09:56:12 njh Exp $";
#if HAVE_CONFIG_H #if HAVE_CONFIG_H
#include "clamav-config.h" #include "clamav-config.h"
@ -4264,7 +4264,7 @@ getline_from_mbox(char *buffer, size_t len, FILE *fin)
return NULL; return NULL;
if((len == 0) || (buffer == NULL)) { if((len == 0) || (buffer == NULL)) {
cli_errmsg("Invalid call to getline_from_mbox(). Report to bugs@clamav.net\n"); cli_errmsg("Invalid call to getline_from_mbox(): refer to http://www.clamav.net/bugs.html#pagestart\n");
return NULL; return NULL;
} }

@ -25,7 +25,7 @@
#include "clamav-config.h" #include "clamav-config.h"
#endif #endif
static char const rcsid[] = "$Id: tnef.c,v 1.33 2006/04/09 19:59:28 kojm Exp $"; static char const rcsid[] = "$Id: tnef.c,v 1.34 2006/05/19 09:56:12 njh Exp $";
#include <stdio.h> #include <stdio.h>
#include <fcntl.h> #include <fcntl.h>
@ -178,7 +178,7 @@ cli_tnef(const char *dir, int desc)
if(fout >= 0) { if(fout >= 0) {
int count; int count;
cli_warnmsg("Saving dump to %s - send to bugs@clamav.net\n", filename); cli_warnmsg("Saving dump to %s: refer to http://www.clamav.net/bugs.html#pagestart\n", filename);
lseek(desc, 0L, SEEK_SET); lseek(desc, 0L, SEEK_SET);
while((count = cli_readn(desc, buffer, sizeof(buffer))) > 0) while((count = cli_readn(desc, buffer, sizeof(buffer))) > 0)

Loading…
Cancel
Save