fix: httpd_sim

This commit is contained in:
Your Name
2026-07-19 16:44:21 +09:00
parent 2d176b7ccc
commit 0a31a65477
+1 -1
View File
@@ -561,7 +561,7 @@ char *scan_header(char *p)
else if (is_word(p, "\nCookie:")) { else if (is_word(p, "\nCookie:")) {
session = p + 9; session = p + 9;
while (*session == ' ') session++; while (*session == ' ') session++;
char *s = strstr(session, "session="); const char *s = strstr(session, "session=");
if (s) session = s + 8; if (s) session = s + 8;
} }
} }