Skip to content
Snippets Groups Projects
Commit b4416699 authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

cat: bug fix for large existing output files (>2GB)

parent e9865b69
No related branches found
No related tags found
No related merge requests found
2007-10-27 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
2007-10-29 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* cat: bug fix for large existing output files (>2GB) [report: Heinz-Dieter Hollweg]
* gradsdes: bug fix for monthly mean data with start day > 28 [report: Renate Brokopf]
* expr: change exponent precedence from left to right (bug fix)[report: Claas Teichmann]
* Version 1.0.9.1 released
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
......@@ -22,6 +22,10 @@
*/
#if defined (HAVE_CONFIG_H)
# include "config.h" /* large file */
#endif
#include <string.h>
#include "cdi.h"
......@@ -72,7 +76,7 @@ void *Cat(void *argument)
fclose(fp);
fileExist = TRUE;
}
if ( fileExist )
{
streamID2 = streamOpenAppend(cdoStreamName(nfiles));
......@@ -88,7 +92,7 @@ void *Cat(void *argument)
else
{
if ( cdoVerbose )
cdoPrint("Output file does not exist, creating: %s", cdoStreamName(nfiles));
cdoPrint("Output file doesn't exist, creating: %s", cdoStreamName(nfiles));
streamID2 = streamOpenWrite(cdoStreamName(nfiles), cdoFiletype());
if ( streamID2 < 0 )
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment