From 818fcfb8139d43f2136452029ac320e48ec154f7 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Tue, 30 Mar 2010 19:08:57 +0200 Subject: libcli/nbt/dns_hosts_file.c - change "ULONG_MAX" into "UINT32_MAX" This fits better since the variable which is tested is of type "uint32_t". --- libcli/nbt/dns_hosts_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libcli/nbt') diff --git a/libcli/nbt/dns_hosts_file.c b/libcli/nbt/dns_hosts_file.c index 6665a10293..810e4ebb0c 100644 --- a/libcli/nbt/dns_hosts_file.c +++ b/libcli/nbt/dns_hosts_file.c @@ -119,7 +119,7 @@ static bool getdns_hosts_fileent(TALLOC_CTX *ctx, XFILE *fp, char **pp_name, cha continue; } *p_port = strtoul(port, NULL, 10); - if (*p_port == ULONG_MAX) { + if (*p_port == UINT32_MAX) { DEBUG(0, ("getdns_hosts_fileent: Ill formed hosts SRV record [%s] (invalid port: %s)\n", line, port)); continue; -- cgit