svn commit: samba r6610 - in branches/SAMBA_4_0/source/auth/gensec: .

tpot at samba.org tpot at samba.org
Wed May 4 06:24:53 GMT 2005


Author: tpot
Date: 2005-05-04 06:24:53 +0000 (Wed, 04 May 2005)
New Revision: 6610

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=6610

Log:
Fix a const warning in the gensec spnego implementation.  (A make proto
is required after updating to this version).

Modified:
   branches/SAMBA_4_0/source/auth/gensec/gensec.c
   branches/SAMBA_4_0/source/auth/gensec/spnego.c


Changeset:
Modified: branches/SAMBA_4_0/source/auth/gensec/gensec.c
===================================================================
--- branches/SAMBA_4_0/source/auth/gensec/gensec.c	2005-05-03 16:24:22 UTC (rev 6609)
+++ branches/SAMBA_4_0/source/auth/gensec/gensec.c	2005-05-04 06:24:53 UTC (rev 6610)
@@ -324,7 +324,7 @@
 			      TALLOC_CTX *mem_ctx, 
 			      uint8_t *data, size_t length, 
 			      const uint8_t *whole_pdu, size_t pdu_length, 
-			      DATA_BLOB *sig)
+			      const DATA_BLOB *sig)
 {
 	if (!gensec_security->ops->unseal_packet) {
 		return NT_STATUS_NOT_IMPLEMENTED;

Modified: branches/SAMBA_4_0/source/auth/gensec/spnego.c
===================================================================
--- branches/SAMBA_4_0/source/auth/gensec/spnego.c	2005-05-03 16:24:22 UTC (rev 6609)
+++ branches/SAMBA_4_0/source/auth/gensec/spnego.c	2005-05-04 06:24:53 UTC (rev 6610)
@@ -89,7 +89,7 @@
 					    TALLOC_CTX *mem_ctx, 
 					    uint8_t *data, size_t length, 
 					    const uint8_t *whole_pdu, size_t pdu_length, 
-					    DATA_BLOB *sig)
+					    const DATA_BLOB *sig)
 {
 	struct spnego_state *spnego_state = gensec_security->private_data;
 



More information about the samba-cvs mailing list