X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/bbdc439aa37b4703e89160ddd98c1a406a515327..a92275551218402bf4969a7fe613cab27416c4ef:/ircd/s_user.c diff --git a/ircd/s_user.c b/ircd/s_user.c index 5d6d0afc..0fa78ba4 100644 --- a/ircd/s_user.c +++ b/ircd/s_user.c @@ -89,7 +89,7 @@ int user_modes[256] = { 0, /* W */ 0, /* X */ 0, /* Y */ - UMODE_SSLCLIENT, /* Z */ + UMODE_SECURE, /* Z */ /* 0x5B */ 0, 0, 0, 0, 0, 0, /* 0x60 */ UMODE_ADMIN, /* a */ 0, /* b */ @@ -254,7 +254,7 @@ authd_check(struct Client *client_p, struct Client *source_p) { /* This shouldn't happen, better tell the ops... */ ierror("authd sent us a malformed OPM string %s", proxy); - sendto_realops_snomask(SNO_GENERAL, L_ALL, + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "authd sent us a malformed OPM string %s", proxy); break; } @@ -542,7 +542,7 @@ register_local_user(struct Client *client_p, struct Client *source_p) if(rb_dlink_list_length(&lclient_list) >= (unsigned long)GlobalSetOptions.maxclients && !IsConfExemptLimits(aconf)) { - sendto_realops_snomask(SNO_FULL, L_ALL, + sendto_realops_snomask(SNO_FULL, L_NETWIDE, "Too many clients, rejecting %s[%s].", source_p->name, source_p->host); ServerStats.is_ref++; @@ -568,7 +568,7 @@ register_local_user(struct Client *client_p, struct Client *source_p) if(!valid_username(source_p->username)) { - sendto_realops_snomask(SNO_REJ, L_ALL, + sendto_realops_snomask(SNO_REJ, L_NETWIDE, "Invalid username: %s (%s@%s)", source_p->name, source_p->username, source_p->host); ServerStats.is_ref++; @@ -635,7 +635,7 @@ register_local_user(struct Client *client_p, struct Client *source_p) } if (IsSecure(source_p)) - source_p->umodes |= UMODE_SSLCLIENT; + source_p->umodes |= UMODE_SECURE; if (source_p->umodes & UMODE_INVISIBLE) Count.invisi++; @@ -659,7 +659,7 @@ register_local_user(struct Client *client_p, struct Client *source_p) { Count.max_loc = rb_dlink_list_length(&lclient_list); if(!(Count.max_loc % 10)) - sendto_realops_snomask(SNO_GENERAL, L_ALL, + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "New Max Local Clients: %d", Count.max_loc); } @@ -1040,7 +1040,7 @@ user_mode(struct Client *client_p, struct Client *source_p, int parc, const char if(IsServer(source_p)) { - sendto_realops_snomask(SNO_GENERAL, L_ADMIN, + sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "*** Mode for User %s from %s", parv[1], source_p->name); return 0; } @@ -1513,12 +1513,12 @@ construct_umodebuf(void) if (user_modes[i] == 0) { orphaned_umodes |= prev_user_modes[i]; - sendto_realops_snomask(SNO_DEBUG, L_ALL, "Umode +%c is now orphaned", i); + sendto_realops_snomask(SNO_DEBUG, L_NETWIDE, "Umode +%c is now orphaned", i); } else { orphaned_umodes &= ~prev_user_modes[i]; - sendto_realops_snomask(SNO_DEBUG, L_ALL, "Orphaned umode +%c is picked up by module", i); + sendto_realops_snomask(SNO_DEBUG, L_NETWIDE, "Orphaned umode +%c is picked up by module", i); } user_modes[i] = prev_user_modes[i]; }