diff options
| author | 2024-07-13 22:37:41 +0100 | |
|---|---|---|
| committer | 2024-07-13 22:37:41 +0100 | |
| commit | 13cfe13d7bf665a2f9cf8d18d4d5ffa6da8f24c6 (patch) | |
| tree | bd31c5e25bb9935f6411bd6dede365ece6708cdf /src/modules/m_dccallow.cpp | |
| parent | Merge branch 'insp4' into master. (diff) | |
| parent | Fix the getentropy test on systems with a new libc and old kernel. (diff) | |
| download | inspircd++-13cfe13d7bf665a2f9cf8d18d4d5ffa6da8f24c6.tar.gz inspircd++-13cfe13d7bf665a2f9cf8d18d4d5ffa6da8f24c6.tar.bz2 inspircd++-13cfe13d7bf665a2f9cf8d18d4d5ffa6da8f24c6.zip | |
Merge branch 'insp4' into master.
Diffstat (limited to 'src/modules/m_dccallow.cpp')
| -rw-r--r-- | src/modules/m_dccallow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_dccallow.cpp b/src/modules/m_dccallow.cpp index 4895531d5..594bcfe5b 100644 --- a/src/modules/m_dccallow.cpp +++ b/src/modules/m_dccallow.cpp @@ -425,7 +425,7 @@ public: if (target.type == MessageTarget::TYPE_USER) { - User* u = target.Get<User>(); + auto* u = target.Get<User>(); /* Always allow a user to dcc themselves (although... why?) */ if (user == u) |
