summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-12-18 09:40:33 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-12-18 09:40:33 +0200
commitaddf724f1afa39d7ab0a781d012812cf02890e3d (patch)
treea38c222b5086337a8d8b8bc326cb459a8b588dc7 /lib
parenta56a86a79247f18e79f1ecab90879c05e6df5f45 (diff)
downloadlibrpm-tizen-addf724f1afa39d7ab0a781d012812cf02890e3d.tar.gz
librpm-tizen-addf724f1afa39d7ab0a781d012812cf02890e3d.tar.bz2
librpm-tizen-addf724f1afa39d7ab0a781d012812cf02890e3d.zip
Drop bogus const from rpmts rootDir + curDir
Diffstat (limited to 'lib')
-rw-r--r--lib/rpmts_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rpmts_internal.h b/lib/rpmts_internal.h
index 607175e89..a5fc5305c 100644
--- a/lib/rpmts_internal.h
+++ b/lib/rpmts_internal.h
@@ -85,8 +85,8 @@ struct rpmts_s {
int selinuxEnabled; /*!< Is SE linux enabled? */
int chrootDone; /*!< Has chroot(2) been been done? */
- const char * rootDir; /*!< Path to top of install tree. */
- const char * currDir; /*!< Current working directory. */
+ char * rootDir; /*!< Path to top of install tree. */
+ char * currDir; /*!< Current working directory. */
FD_t scriptFd; /*!< Scriptlet stdout/stderr. */
int delta; /*!< Delta for reallocation. */
int32_t tid; /*!< Transaction id. */