Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Main
Synchronet
Compare Revisions
8dd98cfdfd89dec024791afe584a58b10f196320...a0c5b8523ab56fd8a29180086df42c7e9ce93ec6
Commits (1)
Use ssl_session for reporting secure connections via WHOIS. Found by nelgin, thanks!
· a0c5b852
Randy Sommerfeld
authored
Dec 15, 2021
a0c5b852
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
exec/load/ircd/core.js
exec/load/ircd/core.js
+1
-1
No files found.
exec/load/ircd/core.js
View file @
a0c5b852
...
...
@@ -1135,7 +1135,7 @@ function IRCClient_do_whois(wi) {
));
}
if
(
wi
.
local
)
{
if
(
wi
.
socket
.
ssl_se
rver
)
{
if
(
wi
.
socket
.
ssl_se
ssion
)
{
this
.
numeric
(
671
,
format
(
"
%s :is using a secure connection.
"
,
wi
.
nick
...
...