summaryrefslogtreecommitdiff
path: root/lib/rpmlead.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-04-16 17:48:04 +0000
committerjbj <devnull@localhost>2003-04-16 17:48:04 +0000
commitc243ab099b4429a20d1ac00baa3eeae206be4365 (patch)
tree2e12bd05c4e85ca9203582baa74fdfabae5222b9 /lib/rpmlead.h
parent14165bc5582af0306bff6bb42b7c76305bec5abf (diff)
downloadlibrpm-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.h8
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 @*/;