From: wessels <> Date: Sat, 14 Feb 1998 02:59:01 +0000 (+0000) Subject: mime.c X-Git-Tag: SQUID_3_0_PRE1~4090 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8ca66e48767ee4e77661ff71ac3d52104ad598cf;p=thirdparty%2Fsquid.git mime.c --- diff --git a/src/mime.cc b/src/mime.cc index 9e877fab1f..9ba779a9c5 100644 --- a/src/mime.cc +++ b/src/mime.cc @@ -1,6 +1,6 @@ /* - * $Id: mime.cc,v 1.48 1998/02/13 17:55:19 wessels Exp $ + * $Id: mime.cc,v 1.49 1998/02/13 19:59:01 wessels Exp $ * * DEBUG: section 25 MIME Parsing * AUTHOR: Harvest Derived @@ -377,10 +377,14 @@ mimeInit(char *filename) m->transfer_mode = 'I'; *MimeTableTail = m; MimeTableTail = &m->next; - mimeLoadIconFile(m->icon); debug(25, 5) ("mimeInit: added '%s'\n", buf); } fclose(fp); + /* + * Create Icon StoreEntry's + */ + for (m = MimeTable; m != NULL; m = m->next) + mimeLoadIconFile(m->icon); mimeLoadIconFile(ICON_MENU); mimeLoadIconFile(ICON_DIRUP); mimeLoadIconFile(ICON_LINK);