X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fmhparse.c;h=da19123bc8a795ec391a9bdadd83816243e644fe;hp=c2506755663e4e7c498861ad18a5b87c703b8f8f;hb=cde72ae86fdf635342a573fc1ca5239702ca554e;hpb=ac3066d2d563ce3b9de66195f6818eecb594fec2 diff --git a/uip/mhparse.c b/uip/mhparse.c index c250675..da19123 100644 --- a/uip/mhparse.c +++ b/uip/mhparse.c @@ -251,7 +251,6 @@ get_content(FILE *in, char *file, int toplevel) for (compnum = 1, state = FLD2;;) { switch (state = m_getfld2(state, &f, in)) { case LENERR2: - advise(NULL, "To long field"); state = FLD2; /* FALL */ case FLD2: @@ -551,7 +550,7 @@ incl_name_value(unsigned char *buf, char *name, char *value) { ** one, return the entire value. Note that, for example, a name_suffix ** of name will match filename="foo", and return foo. */ -static char * +char * extract_name_value(char *name_suffix, char *value) { char *extracted_name_value = value; char *name_suffix_plus_quote = concat(name_suffix, "=\"", NULL);