search for: mech_anonymo

Displaying 1 result from an estimated 1 matches for "mech_anonymo".

Did you mean: mech_anonymous
2007 May 22
1
[PATCH] add some const's
...3c0d90cd346cc8cbfb6d1de3917dda5121 Constify struct mech_module. diff -r e1b3043c0d90 -r a486a946dfa1 src/auth/mech-anonymous.c --- a/src/auth/mech-anonymous.c Tue May 22 03:58:32 2007 +0300 +++ b/src/auth/mech-anonymous.c Tue May 22 09:47:45 2007 +0400 @@ -34,7 +34,7 @@ static struct auth_request *mech_anonymo return request; } -struct mech_module mech_anonymous = { +const struct mech_module mech_anonymous = { "ANONYMOUS", MEMBER(flags) MECH_SEC_ANONYMOUS, diff -r e1b3043c0d90 -r a486a946dfa1 src/auth/mech-cram-md5.c --- a/src/auth/mech-cram-md5.c Tue May 22 03:58:32 2007 +0300 +++ b...