Browse Source

Changed GetFullPathName -> GetFullPathNameA

Sergey Lyubka 12 years ago
parent
commit
6c9ed3ca53
1 changed files with 2 additions and 2 deletions
  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') {
-    GetFullPathName(interp, sizeof(full_interp), full_interp, NULL);
+    GetFullPathNameA(interp, sizeof(full_interp), full_interp, NULL);
     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",
               interp, interp[0] == '\0' ? "" : " ", full_dir, prog);