Skip to content

Commit

Permalink
Converted non-ASCII characters to ASCII.
Browse files Browse the repository at this point in the history
Thanks to GitHub user "malaterre" for the report and suggested fix.
  • Loading branch information
jriesmeier committed Sep 30, 2021
1 parent f864174 commit 3ae202e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions dcmect/libsrc/enhanced_ct.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (C) 2019, Open Connections GmbH
* Copyright (C) 2019-2021, Open Connections GmbH
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation are maintained by
Expand Down Expand Up @@ -480,7 +480,7 @@ OFCondition EctEnhancedCT::loadDataset(DcmDataset& dataset, EctEnhancedCT*& ct)
else
{
DCMECT_ERROR("Invalid SOP Class: "
<< sopClass << ", only Enhanced CT Image Storage (1.2.840.10008.5.1.4.1.1.2.1) supported");
<< sopClass << ", only Enhanced CT Image Storage (1.2.840.10008.5.1.4.1.1.2.1) supported");
return ECT_InvalidSOPClass;
}
}
Expand Down
4 changes: 2 additions & 2 deletions dcmfg/libsrc/concatenationloader.cc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (C) 2019-2020, Open Connections GmbH
* Copyright (C) 2019-2021, Open Connections GmbH
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation are maintained by
Expand Down Expand Up @@ -445,7 +445,7 @@ OFCondition ConcatenationLoader::insertDestinationAttributes()
char buf[100];
dcmGenerateUniqueIdentifier(buf, SITE_INSTANCE_UID_ROOT);
uid = buf;
DCMFG_WARN("SOP Instance UID of Concatentation Source (0020,0242) not set, created new SOP Instance UID "
DCMFG_WARN("SOP Instance UID of Concatentation Source (0020,0242) not set, created new SOP Instance UID "
<< uid);
}
OFCondition result = m_Result->putAndInsertOFStringArray(DCM_SOPInstanceUID, uid);
Expand Down
6 changes: 3 additions & 3 deletions dcmiod/include/dcmtk/dcmiod/modsopcommon.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (C) 2015-2019, Open Connections GmbH
* Copyright (C) 2015-2021, Open Connections GmbH
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation are maintained by
Expand Down Expand Up @@ -177,8 +177,8 @@ class DCMTK_DCMIOD_EXPORT IODSOPCommonModule : public IODModule

/** Set Timezone Offset From UTC
* @param value Value to be set (single value only) or "" for no value.
* Encoded as an ASCII string in the format &ZZXX. The components of this
* string, from left to right, are & = “+” or “-”, and ZZ = Hours and
* Encoded as an ASCII string in the format "&ZZXX". The components of this
* string, from left to right, are & = "+" or "-", and ZZ = Hours and
* XX = Minutes of offset.
* @param checkValue Check 'value' for conformance with VR (SH) and VM (1) if enabled
* @return EC_Normal if successful, an error code otherwise
Expand Down
6 changes: 3 additions & 3 deletions dcmseg/include/dcmtk/dcmseg/segment.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
*
* Copyright (C) 2015-2019, Open Connections GmbH
* Copyright (C) 2015-2021, Open Connections GmbH
* All rights reserved. See COPYRIGHT file for details.
*
* This software and supporting documentation are maintained by
Expand Down Expand Up @@ -58,10 +58,10 @@ class DCMTK_DCMSEG_EXPORT DcmSegment
* successful; memory is allocated by the function
* @param segmentLabel Free text label for the segment
* @param segmentedPropertyCategory The segmented property category.
* Baseline CID 7150 Segmentation Property Categories should be
* Baseline CID 7150 "Segmentation Property Categories" should be
* used.
* @param segmentedPropertyType The segmented property type. Baseline CID
* 7151 Segmentation Property Types
* 7151 "Segmentation Property Types"
* @param algoType The algorithm type used for segmenting this segment
* @param algoName Algorithm name (required if algoType is not MANUAL)
* @return EC_Normal if creation was successful, error otherwise
Expand Down
6 changes: 3 additions & 3 deletions dcmtls/include/dcmtk/dcmtls/tlsciphr.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ enum DcmTLSCipherKeyExchange
/// Static RSA key exchange
TKE_RSA,

/// Elliptic Curve DiffieHellman
/// Elliptic Curve Diffie-Hellman
TKE_ECDH,

/// Fixed ECDH with ECDSA-signed certificates
Expand All @@ -141,7 +141,7 @@ enum DcmTLSCipherKeyExchange
/// Fixed ECDH with RSA signatures
TKE_ECDH_RSA,

/// DiffieHellman key exchange
/// Diffie-Hellman key exchange
TKE_DH

};
Expand All @@ -157,7 +157,7 @@ enum DcmTLSCipherAuthentication
/// Digital Signature Standard
TCA_DSS,

/// Elliptic Curve DiffieHellman
/// Elliptic Curve Diffie-Hellman
TCA_ECDH,

/// Elliptic Curve Digital Signature Algorithm
Expand Down

0 comments on commit 3ae202e

Please sign in to comment.