-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
'cs_successor_liberastaff.c' -> 'cs_successor_placeholder.c'
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
* Copyright (c) 2012 Marien Zwart <[email protected]>. | ||
* Rights to this code are as documented in doc/LICENSE. | ||
* | ||
* Forces the successor for single-# channels to be libera-staff, | ||
* if an account by that name exists. | ||
* Forces the successor for single-# channels to be | ||
* libera-placeholder-account, if an account by that name exists. | ||
*/ | ||
|
||
#include "lc-compat.h" | ||
|
@@ -18,7 +18,7 @@ static void channel_pick_successor_hook(hook_channel_succession_req_t *req) | |
if (req->mc->name[0] == '#' && req->mc->name[1] == '#') | ||
return; | ||
|
||
/* Use libera-staff if it exists. | ||
/* Use ?AAAAAAABB (libera-placeholder-account) if it exists. | ||
* If myuser_find_ext returns NULL the normal successor logic is used. | ||
* If some other user of this hook picked a successor | ||
* we intentionally overrule it. | ||
|
@@ -38,7 +38,7 @@ static void mod_deinit(module_unload_intent_t intent) | |
|
||
DECLARE_MODULE_V1 | ||
( | ||
"libera/cs_successor_liberastaff", MODULE_UNLOAD_CAPABILITY_OK, mod_init, mod_deinit, | ||
"$Id: cs_successor_liberastaff.c 65 2012-06-09 12:25:31Z stephen $", | ||
"libera/cs_successor_placeholder", MODULE_UNLOAD_CAPABILITY_OK, mod_init, mod_deinit, | ||
"$Id: cs_successor_placeholder.c 65 2012-06-09 12:25:31Z stephen $", | ||
"libera chat <https://libera.chat>" | ||
); |