[SCM] Samba Shared Repository - branch master updated

Jeremy Allison jra at samba.org
Thu Sep 1 03:49:03 UTC 2016


The branch, master has been updated
       via  7d33761 tevent: Fix some typos
       via  1e9fa5d ldb: Fix a signed/unsigned hickup
      from  2de4aea s3-libads: Do not use deprecated krb5_change_password()

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


- Log -----------------------------------------------------------------
commit 7d33761f42ce07281cd40578c09b529af60c20ae
Author: Volker Lendecke <vl at samba.org>
Date:   Wed Aug 31 16:12:33 2016 +0200

    tevent: Fix some typos
    
    Signed-off-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: Jeremy Allison <jra at samba.org>
    
    Autobuild-User(master): Jeremy Allison <jra at samba.org>
    Autobuild-Date(master): Thu Sep  1 05:48:38 CEST 2016 on sn-devel-144

commit 1e9fa5dd50debd8acfc64e163f3f25b18ca0372f
Author: Volker Lendecke <vl at samba.org>
Date:   Wed Aug 31 15:38:11 2016 +0200

    ldb: Fix a signed/unsigned hickup
    
    Signed-off-by: Volker Lendecke <vl at samba.org>
    Reviewed-by: Jeremy Allison <jra at samba.org>

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

Summary of changes:
 lib/ldb/ldb_map/ldb_map_outbound.c | 2 +-
 lib/tevent/tevent.h                | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)


Changeset truncated at 500 lines:

diff --git a/lib/ldb/ldb_map/ldb_map_outbound.c b/lib/ldb/ldb_map/ldb_map_outbound.c
index e755b7e..fd25c36 100644
--- a/lib/ldb/ldb_map/ldb_map_outbound.c
+++ b/lib/ldb/ldb_map/ldb_map_outbound.c
@@ -190,7 +190,7 @@ static int map_attrs_partition(struct ldb_module *module, void *mem_ctx, const c
 static int ldb_msg_replace(struct ldb_message *msg, const struct ldb_message_element *el)
 {
 	struct ldb_message_element *old;
-	int j;
+	unsigned j;
 	old = ldb_msg_find_element(msg, el->name);
 
 	/* no local result, add as new element */
diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h
index 2432344..64e2d98 100644
--- a/lib/tevent/tevent.h
+++ b/lib/tevent/tevent.h
@@ -1393,16 +1393,16 @@ int tevent_timeval_compare(const struct timeval *tv1,
 			   const struct timeval *tv2);
 
 /**
- * @brief Get a zero timval value.
+ * @brief Get a zero timeval value.
  *
- * @return              A zero timval value.
+ * @return              A zero timeval value.
  */
 struct timeval tevent_timeval_zero(void);
 
 /**
  * @brief Get a timeval value for the current time.
  *
- * @return              A timval value with the current time.
+ * @return              A timeval value with the current time.
  */
 struct timeval tevent_timeval_current(void);
 


-- 
Samba Shared Repository



More information about the samba-cvs mailing list