Don't send nick name as default PART reason

No other IRC daemon seems to do this (today?), don't remember why
ngIRCd did it in the first place ...

Closes #185.

Reported by Cahata in #ngircd, thanks!
This commit is contained in:
Alexander Barton 2015-03-14 11:13:50 +01:00
parent 2196e945e4
commit 6171beb7ab
4 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
/* /*
* ngIRCd -- The Next Generation IRC Daemon * ngIRCd -- The Next Generation IRC Daemon
* Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors. * Copyright (c)2001-2015 Alexander Barton (alex@barton.de) and Contributors.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -448,7 +448,7 @@ IRC_PART(CLIENT * Client, REQUEST * Req)
while (chan) { while (chan) {
Channel_Part(target, Client, chan, Channel_Part(target, Client, chan,
Req->argc > 1 ? Req->argv[1] : Client_ID(target)); Req->argc > 1 ? Req->argv[1] : "");
chan = strtok(NULL, ","); chan = strtok(NULL, ",");
} }

View File

@ -64,10 +64,10 @@ expect {
"323 nick :End of LIST" "323 nick :End of LIST"
} }
send "part #channel\r" send "part #channel :bye bye\r"
expect { expect {
timeout { exit 1 } timeout { exit 1 }
"@* PART #channel :nick" "@* PART #channel :bye bye"
} }
send "join #channel\r" send "join #channel\r"
@ -93,11 +93,11 @@ expect {
send "join 0\r" send "join 0\r"
expect { expect {
timeout { exit 1 } timeout { exit 1 }
"@* PART #channel2 :nick" "@* PART #channel2 :"
} }
expect { expect {
timeout { exit 1 } timeout { exit 1 }
"@* PART #channel :nick" "@* PART #channel :"
} }
send "quit\r" send "quit\r"

View File

@ -82,7 +82,7 @@ expect {
send "part #channel\r" send "part #channel\r"
expect { expect {
timeout { exit 1} timeout { exit 1}
-re "PART #channel :?nick" "@* PART #channel :"
} }
send "invite nick :parameter with spaces\r" send "invite nick :parameter with spaces\r"

View File

@ -89,7 +89,7 @@ expect {
send "part #channel\r" send "part #channel\r"
expect { expect {
timeout { exit 1 } timeout { exit 1 }
"@* PART #channel :nick" "@* PART #channel :"
} }
send "who Real?Name\r" send "who Real?Name\r"