From: Swen Schillig Date: Fri, 12 Apr 2019 15:28:23 +0000 (+0200) Subject: util: cleanup API change for strtoul(l) wrappers X-Git-Tag: ldb-2.0.5~132 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1756cea95b844f99ae583860ee022ed56cf09aad;p=thirdparty%2Fsamba.git util: cleanup API change for strtoul(l) wrappers Signed-off-by: Swen Schillig Reviewed-by: Ralph Boehme Reviewed-by: Christof Schmitt --- diff --git a/lib/util/util.h b/lib/util/util.h index d65d8c9ff24..c89f4807d5b 100644 --- a/lib/util/util.h +++ b/lib/util/util.h @@ -35,11 +35,6 @@ smb_strtoul(const char *nptr, char **endptr, int base, int *err, int flags); unsigned long long int smb_strtoull(const char *nptr, char **endptr, int base, int *err, int flags); -#define strtoul_err(nptr, endptr, base, err) \ - smb_strtoul(nptr, endptr, base, err, SMB_STR_STANDARD) -#define strtoull_err(nptr, endptr, base, err) \ - smb_strtoull(nptr, endptr, base, err, SMB_STR_STANDARD) - /** * Write dump of binary data to a callback */