From: Volker Lendecke Date: Sat, 21 Jul 2007 21:56:33 +0000 (+0000) Subject: r23986: Some const X-Git-Tag: samba-4.0.0alpha6~801^2~5288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25a3427ef16f261cbfcf65abc367f55165676aaa;p=thirdparty%2Fsamba.git r23986: Some const (This used to be commit dc6f4bdb7f5fc0fd4cd9f687c47af3719985da8b) --- diff --git a/source3/include/smb.h b/source3/include/smb.h index 9db97243eae..b16d8a765ac 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1870,7 +1870,7 @@ struct ip_service { typedef struct smb_sign_info { void (*sign_outgoing_message)(char *outbuf, struct smb_sign_info *si); - BOOL (*check_incoming_message)(char *inbuf, struct smb_sign_info *si, BOOL must_be_ok); + BOOL (*check_incoming_message)(const char *inbuf, struct smb_sign_info *si, BOOL must_be_ok); void (*free_signing_context)(struct smb_sign_info *si); void *signing_context; diff --git a/source3/libsmb/smb_signing.c b/source3/libsmb/smb_signing.c index 3964bfa534d..d893af54f80 100644 --- a/source3/libsmb/smb_signing.c +++ b/source3/libsmb/smb_signing.c @@ -170,7 +170,9 @@ static void null_sign_outgoing_message(char *outbuf, struct smb_sign_info *si) SMB signing - NULL implementation - check a MAC sent by server. ************************************************************/ -static BOOL null_check_incoming_message(char *inbuf, struct smb_sign_info *si, BOOL must_be_ok) +static BOOL null_check_incoming_message(const char *inbuf, + struct smb_sign_info *si, + BOOL must_be_ok) { return True; } @@ -217,7 +219,8 @@ static void free_signing_context(struct smb_sign_info *si) } -static BOOL signing_good(char *inbuf, struct smb_sign_info *si, BOOL good, uint32 seq, BOOL must_be_ok) +static BOOL signing_good(const char *inbuf, struct smb_sign_info *si, + BOOL good, uint32 seq, BOOL must_be_ok) { if (good) { @@ -375,7 +378,9 @@ static void client_sign_outgoing_message(char *outbuf, struct smb_sign_info *si) SMB signing - Client implementation - check a MAC sent by server. ************************************************************/ -static BOOL client_check_incoming_message(char *inbuf, struct smb_sign_info *si, BOOL must_be_ok) +static BOOL client_check_incoming_message(const char *inbuf, + struct smb_sign_info *si, + BOOL must_be_ok) { BOOL good; uint32 reply_seq_number; @@ -531,7 +536,8 @@ static void temp_sign_outgoing_message(char *outbuf, struct smb_sign_info *si) SMB signing - TEMP implementation - check a MAC sent by server. ************************************************************/ -static BOOL temp_check_incoming_message(char *inbuf, struct smb_sign_info *si, BOOL foo) +static BOOL temp_check_incoming_message(const char *inbuf, + struct smb_sign_info *si, BOOL foo) { return True; } @@ -712,7 +718,9 @@ static void srv_sign_outgoing_message(char *outbuf, struct smb_sign_info *si) SMB signing - Server implementation - check a MAC sent by server. ************************************************************/ -static BOOL srv_check_incoming_message(char *inbuf, struct smb_sign_info *si, BOOL must_be_ok) +static BOOL srv_check_incoming_message(const char *inbuf, + struct smb_sign_info *si, + BOOL must_be_ok) { BOOL good; struct smb_basic_signing_context *data =