This commit is contained in:
rickg%netscape.com 2000-03-31 09:12:35 +00:00
Родитель 7f259009b5
Коммит 08335d2d02
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -26,7 +26,7 @@
#include "nsISupportsArray.h"
#include "nsError.h"
#include "prnetdb.h"
#include "nsString2.h"
#include "nsString.h"
#include "nsIIOService.h"
#include "nsIServiceManager.h"
#include "netCore.h"
@ -484,7 +484,7 @@ nsDNSLookup::InitiateLookup(void)
PRBool numeric = PR_TRUE;
for (const char *hostCheck = mHostName; *hostCheck; hostCheck++) {
if (!nsString2::IsDigit(*hostCheck) && (*hostCheck != '.') ) {
if (!nsCRT::IsAsciiDigit(*hostCheck) && (*hostCheck != '.') ) {
numeric = PR_FALSE;
break;
}