]> granicus.if.org Git - pdns/commitdiff
Remove pdns_strtoui
authorAki Tuomi <cmouse@desteem.org>
Sat, 12 Dec 2015 20:56:47 +0000 (22:56 +0200)
committerAki Tuomi <cmouse@desteem.org>
Mon, 21 Dec 2015 12:53:44 +0000 (14:53 +0200)
pdns/misc.cc
pdns/misc.hh

index a7b18c90e2fe1ac6f9c8126b9676ddd86b168b33..9c3e33c65cf16bcf2e1f3295ef3d50f6a2614c34 100644 (file)
@@ -1042,20 +1042,6 @@ bool setSocketTimestamps(int fd)
   return true; // we pretend this happened.
 }
 
-uint32_t pdns_strtoui(const char *nptr, char **endptr, int base)
-{
-#if ULONG_MAX == 4294967295
-  return strtoul(nptr, endptr, base);
-#else
-  unsigned long val = strtoul(nptr, endptr, base);
-  if (val > UINT_MAX) {
-   errno = ERANGE;
-   return UINT_MAX;
-  }
-
-  return val;
-#endif
-}
 bool setNonBlocking(int sock)
 {
   int flags=fcntl(sock,F_GETFL,0);
index 14b887b9506168b56e0b55bcf1332093ef15a98c..260ee7c36f53dfc5bb81409e8185050b8a4ab31b 100644 (file)
@@ -70,7 +70,6 @@ uint16_t getShort(const unsigned char *p);
 uint16_t getShort(const char *p);
 uint32_t getLong(const unsigned char *p);
 uint32_t getLong(const char *p);
-uint32_t pdns_strtoui(const char *nptr, char **endptr, int base);
 bool getTSIGHashEnum(const DNSName& algoName, TSIGHashEnum& algoEnum);
 DNSName getTSIGAlgoName(TSIGHashEnum& algoEnum);