2b1fba5
The original API change happen on:
2b1fba5
http://git.dcmtk.org/web?p=dcmtk.git;a=commit;h=7e87c88918a0ac1f682116cbf0c3205487bb9086
2b1fba5
2b1fba5
According to DCMTK team:
2b1fba5
In the long term, we are trying to get rid of the member variable "errorFlag" in the dcmdata module. All methods should return an OFCondition instead of setting an internal variable for this purpose.
2b1fba5
Index: aeskulap-0.2.2b1/imagepool/poolassociation.h
2b1fba5
===================================================================
2b1fba5
--- aeskulap-0.2.2b1.orig/imagepool/poolassociation.h	2011-02-14 11:00:36.000000000 +0100
2b1fba5
+++ aeskulap-0.2.2b1/imagepool/poolassociation.h	2011-02-14 11:00:52.000000000 +0100
2b1fba5
@@ -115,9 +115,7 @@
2b1fba5
 
2b1fba5
 		if(value != NULL) {
2b1fba5
 			if (strlen(value) > 0) {
2b1fba5
-				elem->putString(value);
2b1fba5
-
2b1fba5
-				if (elem->error() != EC_Normal) {
2b1fba5
+				if( elem->putString(value) != EC_Normal) {
2b1fba5
 					printf("cannot put tag value: (%04x,%04x)=\"%s\"", g, e, value);
2b1fba5
 					return false;
2b1fba5
 				}