Re: [Unreal-users] bug with vhost.
Status: Beta
Brought to you by:
wildchild
From: Brad <Br...@ch...> - 2000-04-02 08:23:57
|
> i get the exact same problem. double checked everything, still no joy. for any of those interested, i found a quick fix to this problem. all you have to do is edit s_serv.c. look for the following piece of code: if (!match("-vhos*", parv[1])) { if (!IsAdmin(sptr)) return 0; sendto_ops("Rehashing vhost configuration on request of %s", sptr->name); vhost_rehash(); return 0; } change: if (!IsAdmin(sptr)) to: if (!IsOper(sptr)) /rehash -vhost works for me now. you also need to do this to /rehash rest, /rehash dyn, and /rehash dcc. brad |