diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/h5copy/h5copy.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/h5copy/h5copy.c b/tools/h5copy/h5copy.c index 5c793a4..b3be05d 100644 --- a/tools/h5copy/h5copy.c +++ b/tools/h5copy/h5copy.c @@ -137,6 +137,10 @@ static int parse_flag(const char* str_flag, unsigned *flag) { fla = H5O_COPY_ALL; } + else if (strcmp(str_flag,"nullmsg")==0) + { + fla = H5O_COPY_PRESERVE_NULL_FLAG; + } else { printf("Error in input flag\n"); |