--- upstream/dynamips-0.2.6-RC5/parser.c 2007/10/06 16:09:07 6 +++ upstream/dynamips-0.2.8-RC1/parser.c 2007/10/06 16:33:40 11 @@ -1,5 +1,5 @@ /* - * Cisco 7200 (Predator) simulation platform. + * Cisco router simulation platform. * Copyright (c) 2006 Christophe Fillot (cf@utc.fr) * * Mini-parser. @@ -84,7 +84,7 @@ } /* Add a character to temporary token (resize if necessary) */ -static int tmp_token_add_char(parser_context_t *ctx,u_char c) +static int tmp_token_add_char(parser_context_t *ctx,char c) { size_t new_size; char *new_str; @@ -196,7 +196,7 @@ } /* Send a buffer to the tokenizer */ -int parser_scan_buffer(parser_context_t *ctx,u_char *buf,size_t buf_size) +int parser_scan_buffer(parser_context_t *ctx,char *buf,size_t buf_size) { int i,type; u_char c;