From 3e6d2b4f1dbb70c8df37e5a6ff910766a95843a7 Mon Sep 17 00:00:00 2001 From: mihaiitdata Date: Mon, 23 Feb 2026 22:54:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20typo:=20FLAG=5FHIDEOPER=20?= =?UTF-8?q?=E2=86=92=20FLAG=5FHIDE=5FOPER=20Eroare=20de=20compilare:=20m?= =?UTF-8?q?=5Foper.c:130:19:=20error:=20'FLAG=5FHIDEOPER'=20undeclared=20d?= =?UTF-8?q?id=20you=20mean=20'FLAG=5FHIDE=5FOPER'=3F=20Fix:=20Numele=20cor?= =?UTF-8?q?ect=20al=20flag-ului=20e=20FLAG=5FHIDE=5FOPER=20(cu=20underscor?= =?UTF-8?q?e)=20Testing:=20Compileaz=C4=83=20f=C4=83r=C4=83=20erori=20acum?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ircd/m_oper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/m_oper.c b/ircd/m_oper.c index 2af679c..452acf5 100644 --- a/ircd/m_oper.c +++ b/ircd/m_oper.c @@ -127,7 +127,7 @@ void do_oper(struct Client* cptr, struct Client* sptr, struct ConfItem* aconf) /* Setează flag-ul hide_oper din config pentru stealth oper mode */ if (HasPriv(sptr, PRIV_HIDE_OPER)) - SetFlag(sptr, FLAG_HIDEOPER); + SetFlag(sptr, FLAG_HIDE_OPER); snomask = ConfSnoMask(aconf) & SNO_ALL; snomask |= aconf->snomask & SNO_ALL;