X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/d295a3986d7bb97c3b36facb1c1d94cbc35d50a5..a92275551218402bf4969a7fe613cab27416c4ef:/ircd/authproc.c diff --git a/ircd/authproc.c b/ircd/authproc.c index 2cb21648..4d2b98e3 100644 --- a/ircd/authproc.c +++ b/ircd/authproc.c @@ -105,7 +105,7 @@ start_authd(void) { ierror("Unable to execute authd in %s or %s/bin", ircd_paths[IRCD_PATH_LIBEXEC], ConfigFileEntry.dpath); - sendto_realops_snomask(SNO_GENERAL, L_ALL, + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "Unable to execute authd in %s or %s/bin", ircd_paths[IRCD_PATH_LIBEXEC], ConfigFileEntry.dpath); return 1; @@ -127,12 +127,12 @@ start_authd(void) if(authd_helper == NULL) { ierror("Unable to start authd helper: %s", strerror(errno)); - sendto_realops_snomask(SNO_GENERAL, L_ALL, "Unable to start authd helper: %s", strerror(errno)); + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "Unable to start authd helper: %s", strerror(errno)); return 1; } ilog(L_MAIN, "authd helper started"); - sendto_realops_snomask(SNO_GENERAL, L_ALL, "authd helper started"); + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "authd helper started"); rb_helper_run(authd_helper); return 0; }