Updated all "report bugs to..." messages to point to valgrind.kde.org;  also
updated the docs to refer to valgrind.kde.org instead of the old website.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2055 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_libpthread.c b/coregrind/vg_libpthread.c
index af9dc1e..8528496 100644
--- a/coregrind/vg_libpthread.c
+++ b/coregrind/vg_libpthread.c
@@ -170,6 +170,8 @@
    char buf[1000];
    strcpy(buf, "\nvalgrind's libpthread.so: ");
    strcat(buf, str);
+   strcat(buf, "\nPlease report this bug at: ");
+   strcat(buf, VG_BUGS_TO);
    strcat(buf, "\n\n");
    VALGRIND_NON_SIMD_CALL2(VG_(message), Vg_UserMsg, buf);
    my_exit(1);
@@ -211,7 +213,7 @@
 void vgPlain_unimp ( char* fn )
 {
    cat_n_send ( "valgrind's libpthread.so: UNIMPLEMENTED FUNCTION: ", fn, "" );
-   barf("Please report this bug to me at: jseward@acm.org");
+   barf("unimplemented function");
 }
 
 
@@ -226,7 +228,7 @@
    sprintf(buf, "\n%s: %s:%d (%s): Assertion `%s' failed.\n",
                 "valgrind", file, line, fn, expr );
    cat_n_send ( "", buf, "" );
-   sprintf(buf, "Please report this bug to me at: %s\n\n", VG_EMAIL_ADDR);
+   sprintf(buf, "Please report this bug at: %s\n\n", VG_BUGS_TO);
    my_exit(1);
 }