Revert "debug it..."
authorStefan Metzmacher <metze@samba.org>
Wed, 2 Mar 2011 17:59:53 +0000 (18:59 +0100)
committerStefan Metzmacher <metze@samba.org>
Thu, 17 May 2018 08:33:09 +0000 (10:33 +0200)
This reverts commit be7a3bd0758def5c0f205f2738df51ffc23ffd46.

source4/dsdb/schema/schema_syntax.c

index e82b350d2004de5eb0030480b60ffd542ccefc6f..6f8d3c1d44998d62326f878c2fd534f887a325a0 100644 (file)
@@ -391,8 +391,6 @@ static WERROR dsdb_syntax_INT32_validate_ldb(const struct dsdb_syntax_ctx *ctx,
                n = v & UINT32_MAX;
 
                if (n != v) {
-                       DEBUG(0,("invalid[%s] n[%ld] v[%ld]\n",
-                               buf, n, v));
                        return WERR_DS_INVALID_ATTRIBUTE_SYNTAX;
                }
 
@@ -405,8 +403,6 @@ static WERROR dsdb_syntax_INT32_validate_ldb(const struct dsdb_syntax_ctx *ctx,
                         * We need to accept '-2147483647', but reject
                         * '2147483649', both represent 0x80000001.
                         */
-                       DEBUG(0,("invalid[%s] n[%ld] v[%ld]\n",
-                               buf, n, v));
                        return WERR_DS_INVALID_ATTRIBUTE_SYNTAX;
                }
 
@@ -539,8 +535,6 @@ static WERROR dsdb_syntax_INT64_validate_ldb(const struct dsdb_syntax_ctx *ctx,
                n = v & UINT64_MAX;
 
                if (n != v) {
-                       DEBUG(0,("invalid[%s] n[%lld] v[%lld]\n",
-                               buf, n, v));
                        return WERR_DS_INVALID_ATTRIBUTE_SYNTAX;
                }
 
@@ -555,8 +549,6 @@ static WERROR dsdb_syntax_INT64_validate_ldb(const struct dsdb_syntax_ctx *ctx,
                         * but reject '9223372036854775809',
                         * both represent 0x8000000000000001.
                         */
-                       DEBUG(0,("invalid[%s] n[%lld] v[%lld]\n",
-                               buf, n, v));
                        return WERR_DS_INVALID_ATTRIBUTE_SYNTAX;
                }