Fix compilation with --enable-assert=soft.

This commit is contained in:
Jilles Tjoelker 2009-04-08 21:30:58 +02:00
parent 8b27cfefe8
commit 8c23bb2e21
2 changed files with 2 additions and 1 deletions

View file

@ -131,7 +131,7 @@ parse(struct Client *client_p, char *pbuffer, char *bufend)
struct Message *mptr;
s_assert(MyConnect(client_p));
s_assert(client_p->localClient->F->fd >= 0);
s_assert(client_p->localClient->F != NULL);
if(IsAnyDead(client_p))
return;

View file

@ -35,6 +35,7 @@
#include "stdinc.h"
#include "s_user.h"
#include "snomask.h"
#include "match.h"
#include "substitution.h"