The branch, master has been updated
via f0dccdca6a9da4440406f9cccd76805cad87d7e6 (commit)
via 6c8c5d7113fda1a0d6a843f2564e84e2a3daf4c2 (commit)
from fd3ba988dca5014a9a2d5636506265c084e5db97 (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit f0dccdca6a9da4440406f9cccd76805cad87d7e6
Author: Michael Adam <[EMAIL PROTECTED]>
Date: Mon Sep 22 14:51:51 2008 +0200
[s3]winbindd: fix a comment typo
Michael
commit 6c8c5d7113fda1a0d6a843f2564e84e2a3daf4c2
Author: Michael Adam <[EMAIL PROTECTED]>
Date: Mon Sep 22 10:34:57 2008 +0200
[s3]winbind_util: fix an implicit cast compile warning.
Michael
-----------------------------------------------------------------------
Summary of changes:
source3/winbindd/winbindd_async.c | 2 +-
source3/winbindd/winbindd_util.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/winbindd/winbindd_async.c
b/source3/winbindd/winbindd_async.c
index 1481aed..7500bcb 100644
--- a/source3/winbindd/winbindd_async.c
+++ b/source3/winbindd/winbindd_async.c
@@ -366,7 +366,7 @@ static void lookupname_recv(TALLOC_CTX *mem_ctx, bool
success,
/********************************************************************
The lookup name call first contacts a DC in its own domain
- and fallbacks to contact a DC in the forest in our domain doesn't
+ and fallbacks to contact a DC if the forest in our domain doesn't
know the name.
********************************************************************/
diff --git a/source3/winbindd/winbindd_util.c b/source3/winbindd/winbindd_util.c
index e7b6576..b296465 100644
--- a/source3/winbindd/winbindd_util.c
+++ b/source3/winbindd/winbindd_util.c
@@ -1160,7 +1160,7 @@ void parse_add_domuser(void *buf, char *domuser, int *len)
}
}
- safe_strcpy(buf, user, *len);
+ safe_strcpy((char *)buf, user, *len);
}
/* Ensure an incoming username from NSS is fully qualified. Replace the
--
Samba Shared Repository