- Replaced some coders@lists.unrealircd.org references with bugs.unrealircd.org.

- Update/add some .cvsignore files.
This commit is contained in:
binki 2010-06-21 21:57:42 +00:00
parent 1e5e60d635
commit 11d84d8534
9 changed files with 23 additions and 11 deletions

View file

@ -1,6 +1,10 @@
ircdcron/ircd.cron
ircdcron/ircdchk
src/modules/Makefile
src/ssl.rnd
src/win32/devel/StackTrace.lib
src/win32/gnu_regex.lib
Makefile
config.log
config.status
config.settings
ssl.rnd
unreal

View file

@ -2004,3 +2004,4 @@
removing one of these shuns would mark the user as un-SHUN-ed. (#0003906)
- Fixed race condition / reference count issue where an outgoing server connect
would cause the IRCd to crash. Reported by Monk (#0003913).
- Replaced some coders@lists.unrealircd.org references with bugs.unrealircd.org

1
autoconf/.cvsignore Normal file
View file

@ -0,0 +1 @@
autom4te.cache

View file

@ -30,8 +30,8 @@ Some minor rules about patches & modifications to UnrealIRCd
5. Do not touch version.c.SH or version.h, unless you are a head coder
if you need a credit in, contact us
6. Patches are submitted to coders@lists.unrealircd.org,
using "cvs diff -u > patchname". A submision must contain description of
6. Patches are submitted to http://bugs.unrealircd.org/
using "cvs diff -u > patchname". A submission must contain description of
what it does, etc.
7. Protocol changes must be discussed before making patches for it.

1
include/.cvsignore Normal file
View file

@ -0,0 +1 @@
setup.h

1
ircdcron/.cvsignore Normal file
View file

@ -0,0 +1 @@
ircdchk

2
src/.cvsignore Normal file
View file

@ -0,0 +1,2 @@
ircd
version.c

1
src/modules/.cvsignore Normal file
View file

@ -0,0 +1 @@
Makefile

View file

@ -233,7 +233,7 @@ LONG __stdcall ExceptionFilter(EXCEPTION_POINTERS *e)
sprintf(text, "UnrealIRCd has encountered a fatal error. Debugging information has"
" been dumped to wircd.%d.core, please email this file to "
"coders@lists.unrealircd.org", getpid());
"file a bug at http://bugs.unrealircd.org/ and attach this file", getpid());
fclose(fd);
#ifndef NOMINIDUMP
@ -255,7 +255,8 @@ LONG __stdcall ExceptionFilter(EXCEPTION_POINTERS *e)
if (pDump(GetCurrentProcess(), GetCurrentProcessId(), hDump, MiniDumpNormal, &ExInfo, NULL, NULL))
{
sprintf(text, "UnrealIRCd has encountered a fatal error. Debugging information has"
" been dumped to wircd.%d.core and %s, please email those 2 files to coders@lists.unrealircd.org",
" been dumped to wircd.%d.core and %s, please upload those 2 files to http://bugs.unrealircd.org/"
" after filing a bug.",
getpid(), minidumpf);
}
CloseHandle(hDump);
@ -289,16 +290,16 @@ LONG __stdcall ExceptionFilter(EXCEPTION_POINTERS *e)
if (fd)
{
fprintf(fd, "UnrealIRCd has encountered a fatal error. Debugging information "
"has been dumped to wircd.%d.core, please email this file to "
"coders@lists.unrealircd.org.", getpid());
"has been dumped to wircd.%d.core, please file a bug and upload "
"this file to http://bugs.unrealircd.org/.", getpid());
fclose(fd);
}
#ifdef _DEBUG
else
{
OutputDebugString("UnrealIRCd has encountered a fatal error. Debugging information "
"has been dumped to wircd.%d.core, please email this file to "
"coders@lists.unrealircd.org.", getpid());
"has been dumped to wircd.%d.core, please file a bug and upload "
"this file to http://bugs.unrealircd.org/.", getpid());
}
#endif
}