Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
f5db4980
Commit
f5db4980
authored
2 years ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Apparently MinGW32 doesn't have inet_ntop() or inet_pton() either
parent
e43ab6c6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/xpdev/ini_file.c
+2
-2
2 additions, 2 deletions
src/xpdev/ini_file.c
with
2 additions
and
2 deletions
src/xpdev/ini_file.c
+
2
−
2
View file @
f5db4980
...
...
@@ -720,7 +720,7 @@ char* iniSetIpAddress(str_list_t* list, const char* section, const char* key, ui
struct
in_addr
in_addr
;
in_addr
.
s_addr
=
htonl
(
value
);
return
iniSetString
(
list
,
section
,
key
,
#ifdef
__BORLANDC__
#if
def
ined(
__BORLANDC__
) || defined(__MINGW32__)
inet_ntoa
(
in_addr
),
// deprecated function call
#else
inet_ntop
(
AF_INET
,
&
in_addr
,
buf
,
sizeof
(
buf
)),
...
...
@@ -1644,7 +1644,7 @@ static uint32_t parseIpAddress(const char* value)
if
(
strchr
(
value
,
'.'
)
==
NULL
)
return
(
strtol
(
value
,
NULL
,
0
));
#ifdef
__BORLANDC__
#if
def
ined(
__BORLANDC__
) || defined(__MINGW32__)
result
=
inet_addr
(
value
);
// deprecated function call
#else
inet_pton
(
AF_INET
,
value
,
&
result
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment