summaryrefslogtreecommitdiff
path: root/rpmio/rpmurl.h
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2008-03-24 20:44:48 +0200
committerPanu Matilainen <pmatilai@redhat.com>2008-03-24 20:44:48 +0200
commite1e66978a1c5871614091d15dfb84439ba90a09e (patch)
treef531a5561d5741c93567849aeb1c0ebdf62baa26 /rpmio/rpmurl.h
parentc4659498e3d5833de32c494d83567c9c15e13700 (diff)
downloadrpm-e1e66978a1c5871614091d15dfb84439ba90a09e.tar.gz
rpm-e1e66978a1c5871614091d15dfb84439ba90a09e.tar.bz2
rpm-e1e66978a1c5871614091d15dfb84439ba90a09e.zip
Remove bogus consts from urlinfo_s structure
Diffstat (limited to 'rpmio/rpmurl.h')
-rw-r--r--rpmio/rpmurl.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/rpmio/rpmurl.h b/rpmio/rpmurl.h
index 8cd5d3c2d..b2997711c 100644
--- a/rpmio/rpmurl.h
+++ b/rpmio/rpmurl.h
@@ -28,14 +28,14 @@ typedef struct urlinfo_s * urlinfo;
* URL control structure.
*/
struct urlinfo_s {
- const char * url; /*!< copy of original url */
- const char * scheme; /*!< URI scheme. */
- const char * user; /*!< URI user. */
- const char * password; /*!< URI password. */
- const char * host; /*!< URI host. */
- const char * portstr; /*!< URI port string. */
- const char * proxyu; /*!< FTP: proxy user */
- const char * proxyh; /*!< FTP/HTTP: proxy host */
+ char * url; /*!< copy of original url */
+ char * scheme; /*!< URI scheme. */
+ char * user; /*!< URI user. */
+ char * password; /*!< URI password. */
+ char * host; /*!< URI host. */
+ char * portstr; /*!< URI port string. */
+ char * proxyu; /*!< FTP: proxy user */
+ char * proxyh; /*!< FTP/HTTP: proxy host */
int proxyp; /*!< FTP/HTTP: proxy port */
int port; /*!< URI port. */
int urltype; /*!< URI type. */