Numerous (TINY) fixes: mostly unused variables...

This commit is contained in:
ddouthitt
2001-10-05 22:04:35 +00:00
parent 16cce2fe2d
commit ae18a158fc
8 changed files with 22 additions and 21 deletions
+4 -4
View File
@@ -25,14 +25,14 @@
int
parse_all_client_messages ()
{
int i, j, len;
int newtoken, inquote;
int i; // int j, len;
//int newtoken, inquote;
client *c;
char *str, *p, *q, *s;
// char *tok;
int argc;
char *argv[256];
char delimiters[] = " ";
//char delimiters[] = " ";
char leftquote[] = "\"'`([{";
char rightquote[] = "\"'`)]}";
char errmsg[256];
@@ -40,7 +40,7 @@ parse_all_client_messages ()
int quoteindex;
for (i = 0; i <= 256; i++) {
argv[i] == NULL;
argv[i] = NULL;
}
#define SEPARATOR_CHAR ' '