Bugfix dir mode

This commit is contained in:
2021-01-01 22:28:53 +01:00
parent 9b9ddbb913
commit f9b7e83ac8
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ int uri_init(http_uri *uri, const char *webroot, const char *uri_str, int dir_mo
} else { } else {
strcpy(uri->pathinfo, ""); strcpy(uri->pathinfo, "");
} }
while (1) { while (dir_mode == URI_DIR_MODE_INFO) {
sprintf(buf0, "%s%s", uri->webroot, uri->path); sprintf(buf0, "%s%s", uri->webroot, uri->path);
sprintf(buf1, "%s.php", buf0); sprintf(buf1, "%s.php", buf0);
sprintf(buf2, "%s.html", buf0); sprintf(buf2, "%s.html", buf0);