diff options
| author | 2026-03-08 17:01:22 +0000 | |
|---|---|---|
| committer | 2026-03-08 17:47:44 +0000 | |
| commit | bb1e5a7b60ea200ddae99f263a38a219879f9617 (patch) | |
| tree | a5cecddf75a3458447d09ca1fa2f859c4486ddec /modules/sslmodes.cpp | |
| parent | Remove the unused remote user finding methods. (diff) | |
Replace IS_* with member functions.
- All user types get an Is* function.
- Only local users are cast using the old function so only local
users get an As* function.
Diffstat (limited to 'modules/sslmodes.cpp')
| -rw-r--r-- | modules/sslmodes.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/sslmodes.cpp b/modules/sslmodes.cpp index ea2339fd2..0c47d5843 100644 --- a/modules/sslmodes.cpp +++ b/modules/sslmodes.cpp @@ -101,7 +101,7 @@ public: if (change.adding == channel->IsModeSet(this)) return false; - if (change.adding && IS_LOCAL(source)) + if (change.adding && source->IsLocal()) { if (!sslapi) { @@ -148,7 +148,7 @@ public: if (change.adding == dest->IsModeSet(this)) return false; - if (change.adding && IS_LOCAL(user)) + if (change.adding && user->IsLocal()) { if (!sslapi) { |
