diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/globals.h | 2 | ||||
-rw-r--r-- | include/inspircd.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/globals.h b/include/globals.h index 4f5e035e2..4087ab00c 100644 --- a/include/globals.h +++ b/include/globals.h @@ -29,7 +29,7 @@ void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...); int common_channels(userrec *u, userrec *u2); void WriteCommon(userrec *u, char* text, ...); void WriteCommonExcept(userrec *u, char* text, ...); -void WriteWallOps(userrec *source, char* text, ...); +void WriteWallOps(userrec *source, bool local_only, char* text, ...); int isnick(const char *n); userrec* Find(std::string nick); chanrec* FindChan(const char* chan); diff --git a/include/inspircd.h b/include/inspircd.h index 6da27ce3f..c81efb992 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -91,7 +91,7 @@ void ChanExceptSender(chanrec* Ptr, userrec* user, char* text, ...); int common_channels(userrec *u, userrec *u2); void WriteCommon(userrec *u, char* text, ...); void WriteCommonExcept(userrec *u, char* text, ...); -void WriteWallOps(userrec *source, char* text, ...); +void WriteWallOps(userrec *source, bool local_only, char* text, ...); int isnick(const char *n); userrec* Find(std::string nick); chanrec* FindChan(const char* chan); |