projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix TELNET server locking up if an invalid command was issued.
[pub/USBasp.git]
/
Projects
/
Webserver
/
Lib
/
HTTPServerApp.c
diff --git
a/Projects/Webserver/Lib/HTTPServerApp.c
b/Projects/Webserver/Lib/HTTPServerApp.c
index
635a307
..
081207c
100644
(file)
--- a/
Projects/Webserver/Lib/HTTPServerApp.c
+++ b/
Projects/Webserver/Lib/HTTPServerApp.c
@@
-198,7
+198,7
@@
static void HTTPServerApp_SendResponseHeader(void)
uip_tcp_appstate_t* const AppState = &uip_conn->appstate;
\r
char* const AppData = (char*)uip_appdata;
\r
\r
uip_tcp_appstate_t* const AppState = &uip_conn->appstate;
\r
char* const AppData = (char*)uip_appdata;
\r
\r
- char*
HeaderToSend;
\r
+ char* HeaderToSend;
\r
\r
/* Determine which HTTP header should be sent to the client */
\r
if (AppState->HTTPServer.FileOpen)
\r
\r
/* Determine which HTTP header should be sent to the client */
\r
if (AppState->HTTPServer.FileOpen)
\r