Subversion Repositories planix.SVN

Rev

Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include "headers.h"

SmbProcessResult
smbcomfindclose2(SmbSession *s, SmbHeader *h, uchar *pdata, SmbBuffer *)
{
        ushort sid;
        if (!smbcheckwordcount("comfindclose2", h, 1))
                return SmbProcessResultFormat;
        sid = smbnhgets(pdata);
        smbsearchclosebyid(s, sid);
        return smbbufferputack(s->response, h, &s->peerinfo);
}