added gnutls backend and moved backend code into new files
[ircu2.10.12-pk.git] / ircd / parse.c
index 65b7d020844bcee4ba8e83e64836095f99153db6..b79ebb8ace48f6f52a9e50dce8812c4ddb2c82c2 100644 (file)
@@ -824,7 +824,6 @@ parse_client(struct Client *cptr, char *buffer, char *bufend)
   char*           s;
   int             i;
   int             paramcount;
-  int             noprefix = 0;
   struct Message* mptr;
   MessageHandler  handler = 0;
 
@@ -842,8 +841,6 @@ parse_client(struct Client *cptr, char *buffer, char *bufend)
     while (*ch == ' ')
       ch++;                     /* Advance to command */
   }
-  else
-    noprefix = 1;
   if (*ch == '\0')
   {
     ServerStats->is_empt++;