diff options
| author | 2021-07-04 14:45:03 +0100 | |
|---|---|---|
| committer | 2021-07-04 14:53:16 +0100 | |
| commit | 5bc4720d55116b1a668e32add2a2b2da459010f2 (patch) | |
| tree | 541228319bc34fc18277cd555998c3bb04ce70ae /include/modules | |
| parent | Move ModeParser::BuildPrefixes to core_mode. (diff) | |
| parent | Allow hostchange to select users based on connect class. (diff) | |
Merge branch 'insp3' into master.
Diffstat (limited to 'include/modules')
| -rw-r--r-- | include/modules/whois.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/modules/whois.h b/include/modules/whois.h index 2344e39c7..f5a0213b8 100644 --- a/include/modules/whois.h +++ b/include/modules/whois.h @@ -91,9 +91,9 @@ class Whois::Context User* const target; public: - Context(LocalUser* src, User* targ) - : source(src) - , target(targ) + Context(LocalUser* sourceuser, User* targetuser) + : source(sourceuser) + , target(targetuser) { } |
