diff options
author | jbj <devnull@localhost> | 2003-04-16 17:48:04 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-04-16 17:48:04 +0000 |
commit | c243ab099b4429a20d1ac00baa3eeae206be4365 (patch) | |
tree | 2e12bd05c4e85ca9203582baa74fdfabae5222b9 /lib/rpmlead.h | |
parent | 14165bc5582af0306bff6bb42b7c76305bec5abf (diff) | |
download | librpm-tizen-c243ab099b4429a20d1ac00baa3eeae206be4365.tar.gz librpm-tizen-c243ab099b4429a20d1ac00baa3eeae206be4365.tar.bz2 librpm-tizen-c243ab099b4429a20d1ac00baa3eeae206be4365.zip |
- resurrect manifests, RPMRC_NOTFOUND returned by readLead().
CVS patchset: 6752
CVS date: 2003/04/16 17:48:04
Diffstat (limited to 'lib/rpmlead.h')
-rw-r--r-- | lib/rpmlead.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rpmlead.h b/lib/rpmlead.h index 48cb6f479..be8e1a67c 100644 --- a/lib/rpmlead.h +++ b/lib/rpmlead.h @@ -12,8 +12,8 @@ extern "C" { /** \ingroup lead * Write lead to file handle. * @param fd file handle - * @param lead data address - * @return 0 on success + * @param lead package lead + * @return RPMRC_OK on success, RPMRC_FAIL on error */ rpmRC writeLead(FD_t fd, const struct rpmlead *lead) /*@globals fileSystem @*/ @@ -22,8 +22,8 @@ rpmRC writeLead(FD_t fd, const struct rpmlead *lead) /** \ingroup lead * Read lead from file handle. * @param fd file handle - * @retval lead data address - * @return 0 on success + * @retval lead package lead + * @return RPMRC_OK on success, RPMRC_FAIL/RPMRC_NOTFOUND on error */ rpmRC readLead(FD_t fd, /*@out@*/ struct rpmlead *lead) /*@modifies fd, *lead @*/; |