Oh, and: > @@ -571,7 +571,12 @@ > cli_handler(sptr) = CLIENT_HANDLER; > release_dns_reply(sptr); > > - send_reply(sptr, RPL_WELCOME, nick); > + send_reply( > + sptr, > + RPL_WELCOME, > + strlen(feature_str(FEAT_PROVIDER)) ? " via " : "", > + strlen(feature_str(FEAT_PROVIDER)) ? feature_str(FEAT_PROVIDER) : "", > + nick); > /* > * This is a duplicate of the NOTICE but see below... > */
This'll dump core if PROVIDER is not set--strlen(NULL). -- Kevin L. Mitchell <[EMAIL PROTECTED]>