bugs@ -> bugzilla

git-svn: trunk@2399
remotes/push_mirror/metadata
Tomasz Kojm 19 years ago
parent 52b5464e4f
commit 2e5a352878
  1. 4
      clamav-devel/libclamav/blob.c
  2. 4
      clamav-devel/libclamav/mbox.c
  3. 4
      clamav-devel/libclamav/message.c
  4. 6
      clamav-devel/libclamav/others.c

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
static char const rcsid[] = "$Id: blob.c,v 1.56 2006/10/15 14:42:39 njh Exp $";
static char const rcsid[] = "$Id: blob.c,v 1.57 2006/10/16 00:33:34 tkojm Exp $";
#if HAVE_CONFIG_H
#include "clamav-config.h"
@ -384,7 +384,7 @@ fileblobDestroy(fileblob *fb)
cli_errmsg("fileblobDestroy: %s not saved: refer to http://www.clamav.net/bugs.html#pagestart\n", fb->b.name);
free(fb->b.name);
} 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 http://bugs.clamav.net\n", fb->b.len);
}
#ifdef CL_DEBUG
fb->b.magic = INVALIDCLASS;

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
static char const rcsid[] = "$Id: mbox.c,v 1.355 2006/10/13 21:47:44 njh Exp $";
static char const rcsid[] = "$Id: mbox.c,v 1.356 2006/10/16 00:33:34 tkojm Exp $";
#ifdef _MSC_VER
#include <winsock.h> /* only needed in CL_EXPERIMENTAL */
@ -2817,7 +2817,7 @@ parseEmailBody(message *messageIn, text *textIn, mbox_ctx *mctx)
if(messages) {
/* "can't happen" */
cli_warnmsg("messages != NULL, report to bugs@clamav.net\n");
cli_warnmsg("messages != NULL, report to http://bugs.clamav.net\n");
free(messages);
}
}

@ -16,7 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
static char const rcsid[] = "$Id: message.c,v 1.190 2006/10/13 21:47:44 njh Exp $";
static char const rcsid[] = "$Id: message.c,v 1.191 2006/10/16 00:33:34 tkojm Exp $";
#if HAVE_CONFIG_H
#include "clamav-config.h"
@ -1690,7 +1690,7 @@ messageToText(message *m)
}
continue;
case UUENCODE:
cli_errmsg("messageToText: Unexpected attempt to handle uuencoded file - report to bugs@clamav.net\n");
cli_errmsg("messageToText: Unexpected attempt to handle uuencoded file - report to http://bugs.clamav.net\n");
if(first) {
last->t_next = NULL;
textDestroy(first);

@ -332,7 +332,7 @@ void *cli_malloc(size_t size)
if(!size || size > CLI_MAX_ALLOCATION) {
cli_errmsg("cli_malloc(): Attempt to allocate %u bytes. Please report to bugs@clamav.net\n", size);
cli_errmsg("cli_malloc(): Attempt to allocate %u bytes. Please report to http://bugs.clamav.net\n", size);
return NULL;
}
@ -356,7 +356,7 @@ void *cli_calloc(size_t nmemb, size_t size)
if(!size || size > CLI_MAX_ALLOCATION) {
cli_errmsg("cli_calloc(): Attempt to allocate %u bytes. Please report to bugs@clamav.net\n", size);
cli_errmsg("cli_calloc(): Attempt to allocate %u bytes. Please report to http://bugs.clamav.net\n", size);
return NULL;
}
@ -380,7 +380,7 @@ void *cli_realloc(void *ptr, size_t size)
if(!size || size > CLI_MAX_ALLOCATION) {
cli_errmsg("cli_realloc(): Attempt to allocate %u bytes. Please report to bugs@clamav.net\n", size);
cli_errmsg("cli_realloc(): Attempt to allocate %u bytes. Please report to http://bugs.clamav.net\n", size);
return NULL;
}

Loading…
Cancel
Save