]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Use the standard SHRT_MAX name.
authorNick Mathewson <nickm@torproject.org>
Tue, 3 Jul 2018 14:28:10 +0000 (10:28 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 3 Jul 2018 14:28:10 +0000 (10:28 -0400)
src/lib/cc/torint.h
src/or/addressmap.c

index e633722ba17b58695ffe0a86a568485ca3693e2c..91db25833b44215155c309af3bcf231bec87c3d2 100644 (file)
@@ -95,10 +95,6 @@ typedef int32_t ssize_t;
 #endif /* (SIZEOF_SIZE_T == 4) || ... */
 #endif /* !defined(SIZE_MAX) */
 
-#ifndef SHORT_MAX
-#define SHORT_MAX SHRT_MAX
-#endif
-
 #ifdef _WIN32
 #  ifdef _WIN64
 #    define TOR_PRIuSZ PRIu64
index a0df5c986525784fedeadeabb65a2bcbc6fb50a2..805d21ae7fc59123b1df16ecd10290b9652c5d9b 100644 (file)
@@ -642,7 +642,7 @@ client_dns_incr_failures(const char *address)
     ent->expires = time(NULL) + MAX_DNS_ENTRY_AGE;
     strmap_set(addressmap,address,ent);
   }
-  if (ent->num_resolve_failures < SHORT_MAX)
+  if (ent->num_resolve_failures < SHRT_MAX)
     ++ent->num_resolve_failures; /* don't overflow */
   log_info(LD_APP, "Address %s now has %d resolve failures.",
            safe_str_client(address),
@@ -1153,4 +1153,3 @@ addressmap_get_mappings(smartlist_t *sl, time_t min_expires,
      iter = strmap_iter_next(addressmap,iter);
    }
 }
-