gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r1695 - GNUnet/src/conf


From: durner
Subject: [GNUnet-SVN] r1695 - GNUnet/src/conf
Date: Tue, 16 Aug 2005 12:27:38 -0700 (PDT)

Author: durner
Date: 2005-08-16 12:27:33 -0700 (Tue, 16 Aug 2005)
New Revision: 1695

Modified:
   GNUnet/src/conf/wizard_curs.c
Log:
kill warnings

Modified: GNUnet/src/conf/wizard_curs.c
===================================================================
--- GNUnet/src/conf/wizard_curs.c       2005-08-16 19:23:15 UTC (rev 1694)
+++ GNUnet/src/conf/wizard_curs.c       2005-08-16 19:27:33 UTC (rev 1695)
@@ -37,6 +37,7 @@
 #include "wizard_util.h"
 #include "mconf.h"
 #include "wizard_curs.h"
+#include "confdata.h"
 
 
 extern int cols, rows;
@@ -82,10 +83,9 @@
 {
   void *active_ptr = NULL;
   int idx, ret, autostart = 0, adv = 0;
-  struct symbol *sym, *symFile;
+  struct symbol *sym;
   char *defval, *user_name = NULL, *group_name = NULL;
   char *confFile;
-  int fileLen;
   char * filename;
 
   filename = getConfigurationString("GNUNET-SETUP",
@@ -461,7 +461,7 @@
       if (sym)
       {
         sym_calc_value_ext(sym, 1);
-        user_name = sym_get_string_value(sym);
+        user_name = (char *) sym_get_string_value(sym);
       }
       
 #ifndef MINGW
@@ -516,7 +516,7 @@
         if (sym)
         {
           sym_calc_value_ext(sym, 1);
-          group_name = sym_get_string_value(sym);
+          group_name = (char *) sym_get_string_value(sym);
         }
 
 #ifndef MINGW





reply via email to

[Prev in Thread] Current Thread [Next in Thread]