summaryrefslogtreecommitdiff
path: root/erts/etc/common/inet_gethost.c
diff options
context:
space:
mode:
Diffstat (limited to 'erts/etc/common/inet_gethost.c')
-rw-r--r--erts/etc/common/inet_gethost.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/erts/etc/common/inet_gethost.c b/erts/etc/common/inet_gethost.c
index 60a4073d1e..af313e4185 100644
--- a/erts/etc/common/inet_gethost.c
+++ b/erts/etc/common/inet_gethost.c
@@ -973,7 +973,7 @@ static void main_loop(void)
}
if (BEE_GREEDY()) {
- DEBUGF(4,("Beeing greedy!"));
+ DEBUGF(4,("Being greedy!"));
if ((cw = pick_worker_greedy(domainbuff)) != NULL) {
/* Put it in the worker specific que if the
domainname matches... */
@@ -1483,7 +1483,7 @@ static int ignore_reply(Worker *pw)
#endif /* !WIN32 */
/*
- * Domain name "parsing" and worker specific queing
+ * Domain name "parsing" and worker specific queueing
*/
static void domaincopy(AddrByte *out, AddrByte *in)
{
@@ -2333,7 +2333,7 @@ static int read_exact(HANDLE fd, void *vbuff, DWORD nbytes, HANDLE ev)
}
}
} else {
- DEBUGF(4,("Read completed syncronously, result %d",ret));
+ DEBUGF(4,("Read completed synchronously, result %d",ret));
}
if (ret == 0) {
DEBUGF(1, ("End of file detected as zero read from pipe."));
@@ -2369,7 +2369,7 @@ static int write_exact(HANDLE fd, AddrByte *buff, DWORD len, HANDLE ev)
stat = WriteFile(fd,buff,x,&res,&ov);
if (!stat) {
if ((err = GetLastError()) == ERROR_IO_PENDING) {
- DEBUGF(4,("Overlapped write, waiting for competion..."));
+ DEBUGF(4,("Overlapped write, waiting for completion..."));
WaitForSingleObject(ov.hEvent,INFINITE);
stat = GetOverlappedResult(fd,&ov,&res,TRUE);
DEBUGF(4,("Overlapped write, completed with status %d,"
@@ -2383,7 +2383,7 @@ static int write_exact(HANDLE fd, AddrByte *buff, DWORD len, HANDLE ev)
}
}
} else {
- DEBUGF(4,("Write completed syncronously, result %d",res));
+ DEBUGF(4,("Write completed synchronously, result %d",res));
}
if (res < x) {