summaryrefslogtreecommitdiff
path: root/lib/rpmds.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2007-12-15 21:14:44 +0200
committerPanu Matilainen <pmatilai@redhat.com>2007-12-15 21:14:44 +0200
commitf013449361e92ea2a6ffaa1bf3e9d1939f18d8b4 (patch)
tree633838a8c9054aca13578ae6f1819d2c0b576f6e /lib/rpmds.c
parentaa61b715e6639d6900ca66facb62d5f099dd11d4 (diff)
downloadlibrpm-tizen-f013449361e92ea2a6ffaa1bf3e9d1939f18d8b4.tar.gz
librpm-tizen-f013449361e92ea2a6ffaa1bf3e9d1939f18d8b4.tar.bz2
librpm-tizen-f013449361e92ea2a6ffaa1bf3e9d1939f18d8b4.zip
Couple of bogus const removals from rpmgi and rpmds structs
- in both cases the data is already directly inaccessible from outside, no further protection necessary
Diffstat (limited to 'lib/rpmds.c')
-rw-r--r--lib/rpmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rpmds.c b/lib/rpmds.c
index b56d7aa46..6337b2154 100644
--- a/lib/rpmds.c
+++ b/lib/rpmds.c
@@ -27,7 +27,7 @@ int _rpmds_unspecified_epoch_noise = 0;
*/
struct rpmds_s {
const char * Type; /*!< Tag name. */
- const char * DNEVR; /*!< Formatted dependency string. */
+ char * DNEVR; /*!< Formatted dependency string. */
Header h; /*!< Header for dependency set (or NULL) */
const char ** N; /*!< Name. */
const char ** EVR; /*!< Epoch-Version-Release. */