]> jfr.im git - solanum.git/blobdiff - modules/m_whowas.c
cap: allow clients to do sasl reauth if they requested sasl and sasl-reauth (ref...
[solanum.git] / modules / m_whowas.c
index ec3cac3545f4fff85d79032e674567bb07834bd1..1e9933c65d857f67ac23ca607c1b66ca62781dfe 100644 (file)
@@ -57,7 +57,7 @@ DECLARE_MODULE_AV1(whowas, NULL, NULL, whowas_clist, NULL, NULL, "$Revision: 171
 */
 static int
 m_whowas(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
-{      
+{
        struct Whowas *temp;
        int cur = 0;
        int max = -1, found = 0;
@@ -145,10 +145,10 @@ m_whowas(struct Client *client_p, struct Client *source_p, int parc, const char
        }
 
        if(!found)
-               sendto_one(source_p, form_str(ERR_WASNOSUCHNICK), 
+               sendto_one(source_p, form_str(ERR_WASNOSUCHNICK),
                           me.name, source_p->name, nick);
 
-       sendto_one(source_p, form_str(RPL_ENDOFWHOWAS), 
+       sendto_one(source_p, form_str(RPL_ENDOFWHOWAS),
                   me.name, source_p->name, parv[1]);
        return 0;
 }