diff options
author | jbj <devnull@localhost> | 2003-05-08 20:39:29 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-05-08 20:39:29 +0000 |
commit | 9c5529608e389271b80469054bfe80737521590a (patch) | |
tree | b1df8b79cd3fdbb7f10d3b48ee25fddb66072fe3 /lib/cpio.h | |
parent | db7ab2f447ee6097b2e98a526f6383a5ca388718 (diff) | |
download | librpm-tizen-9c5529608e389271b80469054bfe80737521590a.tar.gz librpm-tizen-9c5529608e389271b80469054bfe80737521590a.tar.bz2 librpm-tizen-9c5529608e389271b80469054bfe80737521590a.zip |
- don't use error string after gzclose (Dmitry V. Levin).
Spliddles for rpmio, drill h_errno all the way through.
CVS patchset: 6826
CVS date: 2003/05/08 20:39:29
Diffstat (limited to 'lib/cpio.h')
-rw-r--r-- | lib/cpio.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/cpio.h b/lib/cpio.h index 3f95a55b7..1dcaa2acf 100644 --- a/lib/cpio.h +++ b/lib/cpio.h @@ -102,7 +102,7 @@ extern "C" { * @return 0 on success */ int cpioTrailerWrite(FSM_t fsm) - /*@globals fileSystem, internalState @*/ + /*@globals h_errno, fileSystem, internalState @*/ /*@modifies fsm, fileSystem, internalState @*/; /** @@ -112,7 +112,7 @@ int cpioTrailerWrite(FSM_t fsm) * @return 0 on success */ int cpioHeaderWrite(FSM_t fsm, struct stat * st) - /*@globals fileSystem, internalState @*/ + /*@globals h_errno, fileSystem, internalState @*/ /*@modifies fsm, fileSystem, internalState @*/; /** @@ -122,7 +122,7 @@ int cpioHeaderWrite(FSM_t fsm, struct stat * st) * @return 0 on success */ int cpioHeaderRead(FSM_t fsm, struct stat * st) - /*@globals fileSystem, internalState @*/ + /*@globals h_errno, fileSystem, internalState @*/ /*@modifies fsm, *st, fileSystem, internalState @*/; /** \ingroup payload |