summaryrefslogtreecommitdiff
path: root/news/nget/files/patch-nget.cc
diff options
context:
space:
mode:
Diffstat (limited to 'news/nget/files/patch-nget.cc')
-rw-r--r--news/nget/files/patch-nget.cc22
1 files changed, 22 insertions, 0 deletions
diff --git a/news/nget/files/patch-nget.cc b/news/nget/files/patch-nget.cc
new file mode 100644
index 000000000000..6f86a456301a
--- /dev/null
+++ b/news/nget/files/patch-nget.cc
@@ -0,0 +1,22 @@
+--- nget.cc 2005/01/03 22:04:44 1.135
++++ nget.cc 2008/03/03 06:53:40 1.136
+@@ -93,8 +93,8 @@
+
+ struct opt_help {
+ int namelen;
+- char *arg;
+- char *desc;
++ const char *arg;
++ const char *desc;
+ };
+ static opt_help ohelp[NUM_OPTIONS+1];
+ static int olongestlen=0;
+@@ -114,7 +114,7 @@
+ OPT_MIN_SHORTNAME //sentinel, must be last element.
+ };
+
+-static void addoption(char *longo,int needarg,char shorto,char *adesc,char *desc){
++static void addoption(const char *longo,int needarg,char shorto,const char *adesc,const char *desc){
+ static int cur=0;
+ assert(cur<NUM_OPTIONS);
+ #ifdef HAVE_LIBPOPT