replaced a call to nsIHTTPChannel::GetResponseHeader(...) with a call to nsIChannel::GetContentType(...)

This commit is contained in:
rpotts%netscape.com 1999-06-30 06:05:10 +00:00
Родитель 99fcffe580
Коммит 87e871a39c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -144,7 +144,7 @@ TestHTTPEventSink::OnHeadersAvailable(nsISupports* context)
if (pHTTPCon) {
char* type;
//optimize later TODO allow atoms here...! intead of just the header strings
pHTTPCon->GetResponseHeader("Content-type", &type);
pHTTPCon->GetContentType(&type);
if (type) {
printf("\nRecieving ... %s\n", type);
nsCRT::free(type);