> > case 'N': > > if(!strcmp(tag, "Name")) > > /* GET_NAME(ch) = str_dup(line);*/ //Commented line 2356 out. > > break; by commenting out that line, the break becomes conditional: if(!strcmp(tag, "Name")) break; instead of if(!strcmp(tag, "Name")) { ... } break; this could also cause problems... -Jeremy -- +---------------------------------------------------------------+ | FAQ: http://qsilver.queensu.ca/~fletchra/Circle/list-faq.html | | Archives: http://post.queensu.ca/listserv/wwwarch/circle.html | +---------------------------------------------------------------+
This archive was generated by hypermail 2b30 : 12/05/01 PST