2
0
mirror of https://github.com/HDFGroup/hdf5.git synced 2025-04-24 17:51:25 +08:00

[svn-r13720]

Bug fix

The parsing routine -b was not correctly affecting one of the variables that sets the binary output

Tested linux
This commit is contained in:
Pedro Vicente Nunes 2007-05-01 15:58:18 -05:00
parent fcb7783b52
commit 4e243fd5e7

@ -3521,6 +3521,7 @@ parse_start:
usage(progname);
leave(EXIT_FAILURE);
}
bin_output = TRUE;
if (outfname!=NULL) {
if (set_output_file(outfname, 1) < 0){
/* failed to set output file */
@ -3528,7 +3529,6 @@ parse_start:
leave(EXIT_FAILURE);
}
bin_output = TRUE;
last_was_dset = FALSE;
}