mirror of
https://github.com/pissnet/pissircd.git
synced 2025-07-27 05:22:24 +01:00
- Ouch!! Fixed a severe bug which caused opers not being recognized on remote
servers causing various problems... This was caused by a change 1-2 days ago. Reported by Rocko (#0001537).
This commit is contained in:
parent
b8c0185563
commit
cc91e5fde3
2 changed files with 7 additions and 1 deletions
3
Changes
3
Changes
|
@ -2855,3 +2855,6 @@ seen. gmtime warning still there
|
|||
(hint hint.. ;)
|
||||
- Added missing lines to include/setup.h.in for snprintf, vsnprintf, strlcpy, strlcat,
|
||||
and strlncat. Should fix #0001510 (for real this time).
|
||||
- Ouch!! Fixed a severe bug which caused opers not being recognized on remote
|
||||
servers causing various problems... This was caused by a change 1-2 days ago.
|
||||
Reported by Rocko (#0001537).
|
||||
|
|
|
@ -387,7 +387,10 @@ int umode_allow_all(aClient *sptr, int what)
|
|||
|
||||
int umode_allow_opers(aClient *sptr, int what)
|
||||
{
|
||||
return IsAnOper(sptr) ? 1 : 0;
|
||||
if (MyClient(sptr))
|
||||
return IsAnOper(sptr) ? 1 : 0;
|
||||
else
|
||||
return 1;
|
||||
}
|
||||
|
||||
void unload_all_unused_umodes()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue