Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions openbsd-compat/fake-rfc2553.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ gai_strerror(int err)
case EAI_NODATA:
return ("no address associated with name");
case EAI_MEMORY:
return ("memory allocation failure.");
return ("memory allocation failure");
case EAI_NONAME:
return ("nodename nor servname provided, or not known");
return ("name or service is not known");
case EAI_FAMILY:
return ("ai_family not supported");
default:
return ("unknown/invalid error.");
return ("unknown/invalid error");
}
}
#endif /* !HAVE_GAI_STRERROR */
Expand Down
Loading