Rename HTTP_STATE_OK to HTTP_STATE_CONTINUE

This commit is contained in:
Joris Vink 2014-08-14 11:20:04 +02:00
parent 210fb05a35
commit 856d7b0cb2
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@
#define HTTP_ARG_TYPE_UINT64 8
#define HTTP_STATE_ERROR 0
#define HTTP_STATE_OK 1
#define HTTP_STATE_CONTINUE 1
#define HTTP_STATE_COMPLETE 2
#define HTTP_STATE_RETRY 3

View File

@ -973,7 +973,7 @@ http_state_run(struct http_state *states, u_int8_t elm,
return (KORE_RESULT_OK);
case HTTP_STATE_RETRY:
return (KORE_RESULT_RETRY);
case HTTP_STATE_OK:
case HTTP_STATE_CONTINUE:
break;
case HTTP_STATE_COMPLETE:
done = 1;