diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libexif/IptcParse.cpp | 4 | ||||
-rw-r--r-- | lib/libexif/libexif.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libexif/IptcParse.cpp b/lib/libexif/IptcParse.cpp index b58e1f0189..1fc7dfb4a9 100644 --- a/lib/libexif/IptcParse.cpp +++ b/lib/libexif/IptcParse.cpp @@ -56,7 +56,7 @@ #define IPTC_COUNTRY 0x65 #define IPTC_TRANSMISSION_REFERENCE 0x67 #define IPTC_DATE 0x37 -#define IPTC_COPYRIGHT 0x0A +#define IPTC_URGENCY 0x0A #define IPTC_COUNTRY_CODE 0x64 #define IPTC_REFERENCE_SERVICE 0x2D #define IPTC_TIME_CREATED 0x3C @@ -177,7 +177,7 @@ bool CIptcParse::Process (const unsigned char* const Data, const unsigned short case IPTC_COUNTRY: tag = info->Country; break; case IPTC_TRANSMISSION_REFERENCE: tag = info->TransmissionReference; break; case IPTC_DATE: tag = info->Date; break; - case IPTC_COPYRIGHT: tag = info->Copyright; break; + case IPTC_URGENCY: tag = info->Urgency; break; case IPTC_REFERENCE_SERVICE: tag = info->ReferenceService; break; case IPTC_COUNTRY_CODE: tag = info->CountryCode; break; case IPTC_TIME_CREATED: tag = info->TimeCreated; break; diff --git a/lib/libexif/libexif.h b/lib/libexif/libexif.h index 605bbebdcc..d27c4d00c7 100644 --- a/lib/libexif/libexif.h +++ b/lib/libexif/libexif.h @@ -67,7 +67,7 @@ typedef struct { char Country[MAX_IPTC_STRING]; char TransmissionReference[MAX_IPTC_STRING]; char Date[MAX_IPTC_STRING]; - char Copyright[MAX_IPTC_STRING]; + char Urgency[MAX_IPTC_STRING]; char ReferenceService[MAX_IPTC_STRING]; char CountryCode[MAX_IPTC_STRING]; char TimeCreated[MAX_IPTC_STRING]; |