Hey Dennis I just realized that it was for Inter Mud Chat. I don't
believe I was complaining either. Just wondered if someone had some helpful
tips or a solution. The solution for me was to install IMC so that the bug
fix would work. Funny thing this e-mail it minuses out the body language of
actual conversation. Take that as you will. But hey! Thanks for the useful
info buddy. To the rest of the Mailing List of ROM. I duely appologize. My
bad.
Dantin
----- Original Message -----
From: "Dennis" <[EMAIL PROTECTED]>
To: "Dantin" <[EMAIL PROTECTED]>
Sent: Monday, July 08, 2002 5:31 PM
Subject: Re: Bug fixes
> If you have IMC installed then ice_listen, etc. would be implemented in
it.
>
> If you do not have IMC installed, then you need to quit adding random
> code to your mud when you don't know what it's for, and then complaining
> when it doesn't work.
>
>
> Dennis
>
>
> On Mon, 8 Jul 2002, Dantin wrote:
>
> > Okay here is my code:
> >
> > void free_pcdata(PC_DATA *pcdata)
> > {
> > int alias;
> >
> > if (!IS_VALID(pcdata))
> > return;
> >
> > #if !defined(FIRST_BOOT)
> > free_learned(pcdata->learned);
> > free_boolarray(pcdata->group_known);
> > #endif
> >
> > free_string(pcdata->pwd);
> > free_string(pcdata->bamfin);
> > free_string(pcdata->bamfout);
> > + free_string(pcdata->ice_listen);
> > + free_string(pcdata->rreply);
> > + free_string(pcdata->rreply_name);
> > free_string(pcdata->title);
> > free_buf(pcdata->buffer);
> >
> > for (alias = 0; alias < MAX_ALIAS; alias++)
> > {
> > free_string(pcdata->alias[alias]);
> > free_string(pcdata->alias_sub[alias]);
> > }
> > INVALIDATE(pcdata);
> > pcdata->next = pcdata_free;
> > pcdata_free = pcdata;
> >
> > return;
> > }
> >
> > The items with the + sign above is what was added to fix a problem.
> > What was not included in the bug fix was how to impliment ice_listen,
> > rreply, and rreply_name. Does anyone know what this person was refering
to
> > within the code or is this a specific programming for their mud? The
> > compiler had problems with that. Porting to Windows through cygwin.
Thanks
> > again.
> >
> > Dantin
>