Prechádzať zdrojové kódy

Changed GetFullPathName -> GetFullPathNameA

Sergey Lyubka 12 rokov pred
rodič
commit
6c9ed3ca53
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      mongoose.c

+ 2 - 2
mongoose.c

@@ -1305,10 +1305,10 @@ static pid_t spawn_process(struct mg_connection *conn, const char *prog,
   }
   }
 
 
   if (interp[0] != '\0') {
   if (interp[0] != '\0') {
-    GetFullPathName(interp, sizeof(full_interp), full_interp, NULL);
+    GetFullPathNameA(interp, sizeof(full_interp), full_interp, NULL);
     interp = full_interp;
     interp = full_interp;
   }
   }
-  GetFullPathName(dir, sizeof(full_dir), full_dir, NULL);
+  GetFullPathNameA(dir, sizeof(full_dir), full_dir, NULL);
 
 
   mg_snprintf(conn, cmdline, sizeof(cmdline), "%s%s%s\\%s",
   mg_snprintf(conn, cmdline, sizeof(cmdline), "%s%s%s\\%s",
               interp, interp[0] == '\0' ? "" : " ", full_dir, prog);
               interp, interp[0] == '\0' ? "" : " ", full_dir, prog);