changeset 142:f192e2dbb8a5

Switch from uint32_t to in_addr_t for platforms/compilers missing uint32_t definition. This is mainly for VisualAge C++ on OS/2, but there may be others.
author Brian Smith <brian@dbsoft.org>
date Sun, 03 Oct 2021 14:45:39 -0500
parents a28c23b468ae
children c45e449c78ed
files src/handyftp.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/handyftp.c	Sun Oct 03 14:07:21 2021 -0500
+++ b/src/handyftp.c	Sun Oct 03 14:45:39 2021 -0500
@@ -3112,7 +3112,7 @@
 
 union ip4_32 {
 	IP4 ip4;
-	uint32_t ip32;
+	in_addr_t ip32;
 };
 
 /* Parses out IP information from a string returned from the server */