Merge "MIME: Rename image dissectors to file dissectors."

This commit is contained in:
Martin Kaiser 2014-01-29 22:20:47 +00:00 committed by Wireshark code review
commit 1c09d044cb
5 changed files with 10 additions and 11 deletions

View File

@ -301,7 +301,10 @@ set(DIRTY_ASN1_DISSECTOR_SRC
set(DISSECTOR_SRC
dissectors/file-elf.c
dissectors/file-file.c
dissectors/file-gif.c
dissectors/file-jpeg.c
dissectors/file-mp4.c
dissectors/file-png.c
dissectors/packet-2dparityfec.c
dissectors/packet-3com-njack.c
dissectors/packet-3com-xns.c
@ -784,9 +787,6 @@ set(DISSECTOR_SRC
dissectors/packet-igap.c
dissectors/packet-igmp.c
dissectors/packet-igrp.c
dissectors/packet-image-gif.c
dissectors/packet-image-jfif.c
dissectors/packet-image-png.c
dissectors/packet-imap.c
dissectors/packet-imf.c
dissectors/packet-infiniband.c

View File

@ -217,8 +217,10 @@ DIRTY_ASN1_DISSECTOR_SRC = \
FILE_DISSECTOR_SRC = \
file-elf.c \
file-file.c \
file-mp4.c
file-gif.c \
file-jpeg.c \
file-mp4.c \
file-png.c
#
# Dissectors without warnings.
#
@ -706,9 +708,6 @@ DISSECTOR_SRC = \
packet-igap.c \
packet-igmp.c \
packet-igrp.c \
packet-image-gif.c \
packet-image-jfif.c \
packet-image-png.c \
packet-imap.c \
packet-imf.c \
packet-infiniband.c \

View File

@ -1,4 +1,4 @@
/* packet-image-gif.c
/* file-gif.c
*
* Routines for image/gif media dissection
* Copyright 2003, 2004, Olivier Biot.

View File

@ -1,4 +1,4 @@
/* packet-image-jfif.c
/* file-jpeg.c
*
* Routines for JFIF image/jpeg media dissection
* Copyright 2004, Olivier Biot.

View File

@ -1,4 +1,4 @@
/* packet-image-png.c
/* file-png.c
*
* Routines for PNG (Portable Network Graphics) image file dissection
*