mirror of
https://github.com/pissnet/pissircd.git
synced 2025-07-29 22:42:24 +01:00
- Replaced some coders@lists.unrealircd.org references with bugs.unrealircd.org.
- Update/add some .cvsignore files.
This commit is contained in:
parent
1e5e60d635
commit
11d84d8534
9 changed files with 23 additions and 11 deletions
10
.cvsignore
10
.cvsignore
|
@ -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
|
||||
|
|
1
Changes
1
Changes
|
@ -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
1
autoconf/.cvsignore
Normal file
|
@ -0,0 +1 @@
|
|||
autom4te.cache
|
|
@ -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
1
include/.cvsignore
Normal file
|
@ -0,0 +1 @@
|
|||
setup.h
|
1
ircdcron/.cvsignore
Normal file
1
ircdcron/.cvsignore
Normal file
|
@ -0,0 +1 @@
|
|||
ircdchk
|
2
src/.cvsignore
Normal file
2
src/.cvsignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
ircd
|
||||
version.c
|
1
src/modules/.cvsignore
Normal file
1
src/modules/.cvsignore
Normal file
|
@ -0,0 +1 @@
|
|||
Makefile
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue