Browse Source

r11706@Kushana: nickm | 2006-12-24 01:50:52 -0500
Fix 2 bugs in last patch. (VS has weird ideas about const, and I have weird ideas about block structure.)


svn:r9186

Nick Mathewson 17 years ago
parent
commit
a71a5d4bf2
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/or/main.c

+ 3 - 2
src/or/main.c

@@ -2048,15 +2048,16 @@ nt_service_command_line(void)
   for (i = 1; i < backup_argc; ++i) {
     if (!strcmp(backup_argv[i], "--options") ||
         !strcmp(backup_argv[i], "-options")) {
-      while (++i < backup_argc)
+      while (++i < backup_argc) {
         if (!strcmp(backup_argv[i], "-f"))
           use_default_torrc = 0;
         smartlist_add(sl, backup_argv[i]);
+      }
     }
   }
   if (use_default_torrc) {
     smartlist_add(sl, "-f");
-    smartlist_add(sl, torrc);
+    smartlist_add(sl, (char*)torrc);
   }
   tor_assert(smartlist_len(sl));
   options = smartlist_join_strings(sl,"\" \"",0,NULL);