diff options
Diffstat (limited to 'src/user/app/httpd')
-rw-r--r-- | src/user/app/httpd/httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/app/httpd/httpd.c b/src/user/app/httpd/httpd.c index 1aaebc5..9141a39 100644 --- a/src/user/app/httpd/httpd.c +++ b/src/user/app/httpd/httpd.c @@ -65,7 +65,7 @@ static void handle(FILE *c) { } int main(int argc, char **argv) { - const char *path = (argc > 1) ? argv[1] : "/net/0.0.0.0/listen/tcp/80"; + const char *path = (argc > 1) ? argv[1] : "/net/listen/0.0.0.0/tcp/80"; handle_t conn; for (;;) { conn = _syscall_open(path, strlen(path), 0); |