Skip to content

Commit

Permalink
fix 401 message
Browse files Browse the repository at this point in the history
  • Loading branch information
MightyPork committed Sep 23, 2017
1 parent 58c81c0 commit 24f9a37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/auth.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ HTTP auth implementation. Only does basic authentication for now.
#include "base64.h"

httpd_cgi_state ICACHE_FLASH_ATTR authBasic(HttpdConnData *connData) {
const char *forbidden="401 Forbidden.";
const char *forbidden="401 Unauthorized.";
int no=0;
int r;
char hdr[(AUTH_MAX_USER_LEN+AUTH_MAX_PASS_LEN+2)*10];
Expand Down

0 comments on commit 24f9a37

Please sign in to comment.