Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
19e6c64c
Commit
19e6c64c
authored
21 years ago
by
cyan
Browse files
Options
Downloads
Patches
Plain Diff
Joining channel '0' would crash the IRCd (Fixed)
parent
4cc9869f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
exec/ircd.js
+2
-2
2 additions, 2 deletions
exec/ircd.js
exec/load/ircd_channel.js
+2
-2
2 additions, 2 deletions
exec/load/ircd_channel.js
with
4 additions
and
4 deletions
exec/ircd.js
+
2
−
2
View file @
19e6c64c
...
...
@@ -45,7 +45,7 @@ const VERSION_STR = "Synchronet "
// It also enables some more verbose WALLOPS, especially as they pertain to
// blocking functions.
// The special "DEBUG" oper command also switches this value.
var
debug
=
tru
e
;
var
debug
=
fals
e
;
// Resolve connecting clients' hostnames? If set to false, everyone will have
// an IP address instead of a hostname in their nick!user@host identifier.
...
...
@@ -440,7 +440,7 @@ function search_nickbuf(bufnick) {
if
(
!
Users
[
NickHistory
[
nb
].
newnick
.
toUpperCase
()])
return
search_nickbuf
(
NickHistory
[
nb
].
newnick
);
else
return
NickHistory
[
nb
].
newnick
;
return
Users
[
NickHistory
[
nb
].
newnick
.
toUpperCase
()]
;
}
}
return
0
;
...
...
This diff is collapsed.
Click to expand it.
exec/load/ircd_channel.js
+
2
−
2
View file @
19e6c64c
...
...
@@ -38,7 +38,7 @@ const CHANMODE_VOICE =(1<<11); // v
// These are used in the mode crunching section to figure out what character
// to display in the crunched MODE line.
function
Mode
(
modechar
,
args
,
state
,
list
,
isnick
)
{
function
Mode
(
modechar
,
args
,
state
,
list
,
isnick
)
{
// The mode's character
this
.
modechar
=
modechar
;
// Does this mode take a single argument only?
...
...
@@ -657,7 +657,7 @@ function IRCClient_part_all() {
for
(
thisChannel
in
this
.
channels
)
{
partingChannel
=
this
.
channels
[
thisChannel
];
this
.
do_part
(
Channels
[
partingChannel
]
.
nam
);
this
.
do_part
(
partingChannel
.
nam
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment