Skip to content

Commit

Permalink
fix for IIS
Browse files Browse the repository at this point in the history
  • Loading branch information
must21de committed Apr 27, 2015
1 parent d38909a commit ff65917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities/Adaptors/IIS/WebObjects.c
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ static int readContentData(HTTPRequest *req, void *dataBuffer, int dataSize, int
length = (char *)WOMALLOC(32);
if (length)
{
sprintf(length,"%ul",req->content_length);
sprintf(length,"%lu",req->content_length);
req_addHeader(req, CONTENT_LENGTH, length, STR_FREEVALUE);
}
if (p->lpszContentType != NULL)
Expand Down

0 comments on commit ff65917

Please sign in to comment.