[SCM] Samba Shared Repository - branch master updated - release-4-0-0alpha8-1063-g61d4f8b

Matthias Dieter Wallnöfer mdw at samba.org
Tue Aug 18 04:26:39 MDT 2009


The branch, master has been updated
       via  61d4f8be6080d1793040c94b431bd4529e8c6aac (commit)
      from  2cf897b10aa6b0d9565333085477e348261bfb2c (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 61d4f8be6080d1793040c94b431bd4529e8c6aac
Author: Matthias Dieter Wallnöfer <mwallnoefer at yahoo.de>
Date:   Mon Aug 17 20:42:39 2009 +0200

    s4: int32 handling: previous fix was not fully correct

-----------------------------------------------------------------------

Summary of changes:
 source4/dsdb/schema/schema_syntax.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/dsdb/schema/schema_syntax.c b/source4/dsdb/schema/schema_syntax.c
index 6159ab4..2f14e3c 100644
--- a/source4/dsdb/schema/schema_syntax.c
+++ b/source4/dsdb/schema/schema_syntax.c
@@ -236,7 +236,7 @@ static WERROR dsdb_syntax_INT32_ldb_to_drsuapi(struct ldb_context *ldb,
 
 		/* We've to use "strtoll" here to have the intended overflows.
 		 * Otherwise we may get "LONG_MAX" and the conversion is wrong. */
-		v = strtoll((const char *)in->values[i].data, NULL, 0);
+		v = (int32_t) strtoll((char *)in->values[i].data, NULL, 0);
 
 		SIVALS(blobs[i].data, 0, v);
 	}


-- 
Samba Shared Repository


More information about the samba-cvs mailing list