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

file.c::file_initialize: added support for env GRIB_API_IO_BUFFER_SIZE

parent 1011d94b
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,10 @@
* Version 1.5.9 released
2012-11-09 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* file.c::file_initialize: added support for env GRIB_API_IO_BUFFER_SIZE [request: Florian Prill]
2012-11-07 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* gridGenXvals/gridGenYvals: removed changes from 1.5.8 (bug fix)
......
......@@ -758,6 +758,11 @@ void file_initialize(void)
value = file_getenv("FILE_BUFSIZE");
if ( value >= 0 ) FileBufferSizeEnv = value;
else
{
value = file_getenv("GRIB_API_IO_BUFFER_SIZE");
if ( value >= 0 ) FileBufferSizeEnv = value;
}
value = file_getenv("FILE_TYPE");
if ( value > 0 )
......
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