diff options
author | Noah Misch | 2023-04-02 16:31:10 +0000 |
---|---|---|
committer | Noah Misch | 2023-04-02 16:31:10 +0000 |
commit | ab73291d263049f00a394b37940ed197616fc3f8 (patch) | |
tree | e41c756fd4a2c37d6820de8e12f4fbabdfd898f5 | |
parent | eaa1dd131ca0a4c8e221cd60cdfc69aa0f7efe42 (diff) |
Fix copy-pasto in contrib/auth_delay/meson.build variable name.
-rw-r--r-- | contrib/auth_delay/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/auth_delay/meson.build b/contrib/auth_delay/meson.build index f3a81dc4db6..f2b2da0551a 100644 --- a/contrib/auth_delay/meson.build +++ b/contrib/auth_delay/meson.build @@ -10,8 +10,8 @@ if host_system == 'windows' '--FILEDESC', 'auth_delay - delay authentication failure reports',]) endif -autoinc = shared_module('auth_delay', +auth_delay = shared_module('auth_delay', auth_delay_sources, kwargs: contrib_mod_args, ) -contrib_targets += autoinc +contrib_targets += auth_delay |