The branch, master has been updated
       via  120dc0e5aa2778a6ad2da80672b0e51ed77f2f53 (commit)
      from  980aa0d464b5e95c777539cdd7a289b5407f1912 (commit)

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


- Log -----------------------------------------------------------------
commit 120dc0e5aa2778a6ad2da80672b0e51ed77f2f53
Author: Kai Blin <[email protected]>
Date:   Fri Jan 2 22:46:08 2009 +0100

    s4 winbind: Correctly silence a "discard const" warning
    
    Thanks to metze for pointing out the error.

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

Summary of changes:
 source4/winbind/wb_samba3_cmd.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/winbind/wb_samba3_cmd.c b/source4/winbind/wb_samba3_cmd.c
index ea30505..6af9266 100644
--- a/source4/winbind/wb_samba3_cmd.c
+++ b/source4/winbind/wb_samba3_cmd.c
@@ -115,8 +115,8 @@ NTSTATUS wbsrv_samba3_priv_pipe_dir(struct 
wbsrv_samba3_call *s3call)
 {
        const char *path = 
s3call->wbconn->listen_socket->service->priv_socket_path;
        s3call->response.result          = WINBINDD_OK;
-       s3call->response.extra_data.data = path;
-               
+       s3call->response.extra_data.data = discard_const(path);
+
        s3call->response.length += strlen(path) + 1;
        return NT_STATUS_OK;
 }


-- 
Samba Shared Repository

Reply via email to