Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
fe36fc91
Kaydet (Commit)
fe36fc91
authored
Tem 23, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Before declaring h_errno, do not check for Win32 only. Instead, do check
whether h_errno is a macro.
üst
4c81d60f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
getaddrinfo.c
Modules/getaddrinfo.c
+1
-1
socketmodule.c
Modules/socketmodule.c
+1
-1
No files found.
Modules/getaddrinfo.c
Dosyayı görüntüle @
fe36fc91
...
...
@@ -544,7 +544,7 @@ get_addr(hostname, af, res, pai, port0)
struct
gai_afd
*
gai_afd
;
int
i
,
error
=
0
,
h_error
;
char
*
ap
;
#if !defined(INET6) && !defined(
MS_WIN32
)
#if !defined(INET6) && !defined(
h_errno
)
/* In winsock.h, h_errno is #defined as a function call. */
extern
int
h_errno
;
#endif
...
...
Modules/socketmodule.c
Dosyayı görüntüle @
fe36fc91
...
...
@@ -1789,7 +1789,7 @@ gethost_common(struct hostent *h, struct sockaddr *addr, int alen, int af)
if
(
h
==
NULL
)
{
/* Let's get real error message to return */
#ifndef
MS_WIN32
#ifndef
h_errno
extern
int
h_errno
;
#endif
PyH_Err
(
h_errno
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment