Fix header and class name.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@43098 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2011-11-02 08:56:25 +00:00
parent 90a55c448a
commit f558ec135a

View File

@ -9,7 +9,7 @@
#include <new>
#include <UrlRequest.h>
#include <UrlHttpProtocol.h>
#include <UrlProtocolHttp.h>
#include <Debug.h>
@ -136,7 +136,7 @@ BUrlRequest::Identify()
fUrlProtocol = NULL;
if (fUrl.Protocol() == "http") {
fUrlProtocol = new(std::nothrow) BUrlHttpProtocol(fUrl, fListener, fContext, &fResult);
fUrlProtocol = new(std::nothrow) BUrlProtocolHttp(fUrl, fListener, fContext, &fResult);
fReady = true;
return B_OK;
}