[SCM] Samba Shared Repository - branch master updated

David Disseldorp ddiss at samba.org
Thu Nov 28 10:17:03 MST 2013


The branch, master has been updated
       via  fb042b3 replace: fix typo in variable name
      from  ffae8a1 pam_winbind: Use strlcat in safe_append_string

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


- Log -----------------------------------------------------------------
commit fb042b35edc2333ec81b36359caac82673a457b5
Author: David Disseldorp <ddiss at samba.org>
Date:   Thu Nov 28 15:56:58 2013 +0100

    replace: fix typo in variable name
    
    13550a2b5eed57084a5d9671d9493a9a2e08d7e3 added a typo causing
    compilation failure.
    
    Signed-off-by: David Disseldorp <ddiss at samba.org>
    Reviewed-by: Volker Lendecke <vl at samba.org>
    
    Autobuild-User(master): David Disseldorp <ddiss at samba.org>
    Autobuild-Date(master): Thu Nov 28 18:16:27 CET 2013 on sn-devel-104

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

Summary of changes:
 lib/replace/replace.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/replace/replace.c b/lib/replace/replace.c
index effe5de..2a9ca3e 100644
--- a/lib/replace/replace.c
+++ b/lib/replace/replace.c
@@ -84,7 +84,7 @@ size_t rep_strlcpy(char *d, const char *s, size_t bufsize)
    be one more than the maximum resulting string length */
 size_t rep_strlcat(char *d, const char *s, size_t bufsize)
 {
-	size_t len1 = strnlen(d, bufsiz);
+	size_t len1 = strnlen(d, bufsize);
 	size_t len2 = strlen(s);
 	size_t ret = len1 + len2;
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list