diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-08-18 17:14:43 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-08-18 17:14:43 (GMT) |
commit | d27a31461c69001551b1168c3ca44b591f4cb82b (patch) | |
tree | bac2fc1ea06c6ab1052c0eab083c87769ac79c3f /bin | |
parent | d9b9ed853d6b5d53935efad83d932f58ef0a5ac3 (diff) | |
download | hdf5-d27a31461c69001551b1168c3ca44b591f4cb82b.zip hdf5-d27a31461c69001551b1168c3ca44b591f4cb82b.tar.gz hdf5-d27a31461c69001551b1168c3ca44b591f4cb82b.tar.bz2 |
[svn-r601] Changes since 19980814
----------------------
./src/H5Fistore.c
Fixed a bug that caused the wrong number of chunk offsets to
be read or written from the file.
./src/H5Z.c
Fixed a memory bug.
./test/dtypes.c
Removed redundant tests.
./bin/snapshot
Removed Perl code from a shell script. Oops :-)
./src/H5D.c
Removed cvs merge conflicts.
./src/H5Omtime.c
Fixed a typo in the Irix5.3 code.
./src/H5S.c
Fixed a memory leak.
./src/H5Shyper.c
Fixed a bad call to malloc() that didn't allocate enough
memory. Reordered a comparison to eliminate an array bounds
read error.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/snapshot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/snapshot b/bin/snapshot index 4f03da6..0b0edd4 100755 --- a/bin/snapshot +++ b/bin/snapshot @@ -11,7 +11,7 @@ date # The path isn't properly initialized on hawkwind -- /usr/local/bin is # either missing or is after /usr/bin when it should be before. -$ENV{PATH} = "/usr/local/bin:" . $ENV{PATH}; +PATH="/usr/local/bin:$PATH" # Where are the snapshots stored? ARCHIVES=/hdf3/ftp/pub/outgoing/hdf5/snapshots |