comparison OrthancServer/Internals/StoreScp.cpp @ 194:0186ac92810c

fixes for Ubuntu 10.04
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 14 Nov 2012 09:23:53 +0100
parents fe180eae201d
children 4d7469f72a0b
comparison
equal deleted inserted replaced
193:a1b9d1e1497b 194:0186ac92810c
79 #if DCMTK_VERSION_NUMBER >= 360 79 #if DCMTK_VERSION_NUMBER >= 360
80 OFCondition c = dataSet->write(ob, xfer, encodingType, NULL, 80 OFCondition c = dataSet->write(ob, xfer, encodingType, NULL,
81 /*opt_groupLength*/ EGL_recalcGL, 81 /*opt_groupLength*/ EGL_recalcGL,
82 /*opt_paddingType*/ EPD_withoutPadding); 82 /*opt_paddingType*/ EPD_withoutPadding);
83 #else 83 #else
84 OFCondition c = dataSet->write(ob, xfer, encodingType); 84 OFCondition c = dataSet->write(ob, xfer, encodingType, NULL);
85 #endif 85 #endif
86 86
87 dataSet->transferEnd(); 87 dataSet->transferEnd();
88 if (c.good()) 88 if (c.good())
89 { 89 {