diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2010-10-22 11:39:53 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2010-10-22 11:39:53 +0300 |
commit | 4171b24699075557d7d7ecf35f26fd454bc490f0 (patch) | |
tree | 39a563df4b43ef99647d7e21f4b0bd6977e672d8 /lib/rpmscript.h | |
parent | 327ad093ef20d25de2ce65eaa0c79525f1b25219 (diff) | |
download | librpm-tizen-4171b24699075557d7d7ecf35f26fd454bc490f0.tar.gz librpm-tizen-4171b24699075557d7d7ecf35f26fd454bc490f0.tar.bz2 librpm-tizen-4171b24699075557d7d7ecf35f26fd454bc490f0.zip |
Switch psm and rpmscript to use rpmTagVal where appropriate
- There are a few true rpmTag uses though, leaving them as they are...
Diffstat (limited to 'lib/rpmscript.h')
-rw-r--r-- | lib/rpmscript.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rpmscript.h b/lib/rpmscript.h index 9c340dfbc..f10770c72 100644 --- a/lib/rpmscript.h +++ b/lib/rpmscript.h @@ -15,7 +15,7 @@ typedef rpmFlags rpmscriptFlags; typedef struct rpmScript_s * rpmScript; struct rpmScript_s { - rpmTag tag; /* script tag */ + rpmTagVal tag; /* script tag */ char **args; /* scriptlet call arguments */ char *body; /* script body */ char *descr; /* description for logging */ @@ -27,7 +27,7 @@ extern "C" { #endif RPM_GNUC_INTERNAL -rpmScript rpmScriptFromTag(Header h, rpmTag scriptTag); +rpmScript rpmScriptFromTag(Header h, rpmTagVal scriptTag); RPM_GNUC_INTERNAL rpmScript rpmScriptFree(rpmScript script); |