Get rid of User.server.

This commit is contained in:
William Pitcock 2007-11-20 06:36:55 -06:00
parent 0a61720ad4
commit c88cdb0095
26 changed files with 66 additions and 70 deletions

View file

@ -81,7 +81,7 @@ ms_locops(struct Client *client_p, struct Client *source_p, int parc, const char
if(!match(parv[1], me.name))
return 0;
if(find_shared_conf("*", "*", source_p->user->server, SHARED_LOCOPS))
if(find_shared_conf("*", "*", source_p->servptr->name, SHARED_LOCOPS))
sendto_wallops_flags(UMODE_LOCOPS, source_p, "SLOCOPS - %s", parv[2]);
return 0;
@ -94,7 +94,7 @@ me_locops(struct Client *client_p, struct Client *source_p,
if(!IsPerson(source_p))
return 0;
if(find_shared_conf("*", "*", source_p->user->server, SHARED_LOCOPS))
if(find_shared_conf("*", "*", source_p->servptr->name, SHARED_LOCOPS))
sendto_wallops_flags(UMODE_LOCOPS, source_p, "SLOCOPS - %s", parv[1]);
return 0;