[SCM] Samba Shared Repository - branch master updated

Matthias Dieter Wallnöfer mdw at samba.org
Wed Oct 27 02:14:02 MDT 2010


The branch, master has been updated
       via  14a3d4d librpc/ndr/ndr.c - fix some counter types
      from  51dd83a auth/credentials Give a sensible behaviour for resetting the krb5 context

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


- Log -----------------------------------------------------------------
commit 14a3d4d7f06f667d3d5634360e1bb81f7f9a117d
Author: Matthias Dieter Wallnöfer <mdw at samba.org>
Date:   Wed Oct 27 08:54:46 2010 +0200

    librpc/ndr/ndr.c - fix some counter types
    
    The "depth" is "uint32_t"
    
    Autobuild-User: Matthias Dieter Wallnöfer <mdw at samba.org>
    Autobuild-Date: Wed Oct 27 08:13:40 UTC 2010 on sn-devel-104

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

Summary of changes:
 librpc/ndr/ndr.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


Changeset truncated at 500 lines:

diff --git a/librpc/ndr/ndr.c b/librpc/ndr/ndr.c
index 0e16a43..63b2cc3 100644
--- a/librpc/ndr/ndr.c
+++ b/librpc/ndr/ndr.c
@@ -166,7 +166,8 @@ _PUBLIC_ void ndr_print_debug_helper(struct ndr_print *ndr, const char *format,
 {
 	va_list ap;
 	char *s = NULL;
-	int i, ret;
+	uint32_t i;
+	int ret;
 
 	va_start(ap, format);
 	ret = vasprintf(&s, format, ap);
@@ -193,7 +194,7 @@ _PUBLIC_ void ndr_print_debug_helper(struct ndr_print *ndr, const char *format,
 _PUBLIC_ void ndr_print_printf_helper(struct ndr_print *ndr, const char *format, ...) 
 {
 	va_list ap;
-	int i;
+	uint32_t i;
 
 	if (!ndr->no_newline) {
 		for (i=0;i<ndr->depth;i++) {
@@ -212,7 +213,7 @@ _PUBLIC_ void ndr_print_printf_helper(struct ndr_print *ndr, const char *format,
 _PUBLIC_ void ndr_print_string_helper(struct ndr_print *ndr, const char *format, ...)
 {
 	va_list ap;
-	int i;
+	uint32_t i;
 
 	if (!ndr->no_newline) {
 		for (i=0;i<ndr->depth;i++) {


-- 
Samba Shared Repository


More information about the samba-cvs mailing list