summaryrefslogtreecommitdiff
path: root/lib/psm.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-05-23 19:42:23 +0000
committerjbj <devnull@localhost>2002-05-23 19:42:23 +0000
commitaeb8ed2318f0a486ee258cc39f9546981386b957 (patch)
tree5b4a003fcfd7c68c52f0285780fe0636ffb41a2e /lib/psm.c
parented2765de234f2cbcedc363981e852056c9b02315 (diff)
downloadlibrpm-tizen-aeb8ed2318f0a486ee258cc39f9546981386b957.tar.gz
librpm-tizen-aeb8ed2318f0a486ee258cc39f9546981386b957.tar.bz2
librpm-tizen-aeb8ed2318f0a486ee258cc39f9546981386b957.zip
Create rpmts-py.c.
CVS patchset: 5446 CVS date: 2002/05/23 19:42:23
Diffstat (limited to 'lib/psm.c')
-rw-r--r--lib/psm.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/psm.c b/lib/psm.c
index 07f7e3d22..f83f36cc5 100644
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -763,7 +763,7 @@ static int runScript(PSM_t psm, Header h,
FD_t fd;
/*@-branchstate@*/
- if (makeTempFile((!rpmtsGetChrootDone(ts) ? rootDir : "/"), &fn, &fd)) {
+ if (makeTempFile((!rpmtsChrootDone(ts) ? rootDir : "/"), &fn, &fd)) {
if (freePrefixes) free(prefixes);
return 1;
}
@@ -780,7 +780,7 @@ static int runScript(PSM_t psm, Header h,
xx = Fclose(fd);
{ const char * sn = fn;
- if (!rpmtsGetChrootDone(ts) && rootDir != NULL &&
+ if (!rpmtsChrootDone(ts) && rootDir != NULL &&
!(rootDir[0] == '/' && rootDir[1] == '\0'))
{
sn += strlen(rootDir)-1;
@@ -802,7 +802,7 @@ static int runScript(PSM_t psm, Header h,
argv[argc] = NULL;
- scriptFd = rpmtsGetScriptFd(ts);
+ scriptFd = rpmtsScriptFd(ts);
if (scriptFd != NULL) {
if (rpmIsVerbose()) {
out = fdDup(Fileno(scriptFd));
@@ -879,7 +879,7 @@ static int runScript(PSM_t psm, Header h,
rootDir = strchr(rootDir, '/');
/*@fallthrough@*/
case URL_IS_UNKNOWN:
- if (!rpmtsGetChrootDone(ts) && !(rootDir[0] == '/' && rootDir[1] == '\0')) {
+ if (!rpmtsChrootDone(ts) && !(rootDir[0] == '/' && rootDir[1] == '\0')) {
/*@-superuser -noeffect @*/
xx = chroot(rootDir);
/*@=superuser =noeffect @*/
@@ -1828,7 +1828,7 @@ psm->te->h = headerFree(psm->te->h, "psm->te->h");
case PSM_CHROOT_IN:
{ const char * rootDir = rpmtsRootDir(ts);
/* Change root directory if requested and not already done. */
- if (rootDir != NULL && !rpmtsGetChrootDone(ts) && !psm->chrootDone) {
+ if (rootDir != NULL && !rpmtsChrootDone(ts) && !psm->chrootDone) {
static int _loaded = 0;
/*
@@ -1852,7 +1852,7 @@ psm->te->h = headerFree(psm->te->h, "psm->te->h");
case PSM_CHROOT_OUT:
/* Restore root directory if changed. */
if (psm->chrootDone) {
- const char * currDir = rpmtsGetCurrDir(ts);
+ const char * currDir = rpmtsCurrDir(ts);
/*@-superuser@*/
rc = chroot(".");
/*@=superuser@*/