From cd8c082b797a5a11cd7d935f564a261def71bcaf Mon Sep 17 00:00:00 2001 From: Paul Green Date: Wed, 27 Aug 2003 15:05:05 +0000 Subject: Be consistent about using capital letters in the function names. (The only one that really matters is the init entrypoint, but I changed the others to remain consistent). (This used to be commit ce0469ad1c01b36d3f0000756f6917478df37d02) --- source3/modules/CP850.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3') diff --git a/source3/modules/CP850.c b/source3/modules/CP850.c index a17015ffb6..4923f84d50 100644 --- a/source3/modules/CP850.c +++ b/source3/modules/CP850.c @@ -347,7 +347,7 @@ static const unsigned char from_ucs2[] = { }; -static size_t cp850_push(void *cd, char **inbuf, size_t *inbytesleft, +static size_t CP850_push(void *cd, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft) { while (*inbytesleft >= 2 && *outbytesleft >= 1) { @@ -387,7 +387,7 @@ static size_t cp850_push(void *cd, char **inbuf, size_t *inbytesleft, return 0; } -static size_t cp850_pull(void *cd, char **inbuf, size_t *inbytesleft, +static size_t CP850_pull(void *cd, char **inbuf, size_t *inbytesleft, char **outbuf, size_t *outbytesleft) { while (*inbytesleft >= 1 && *outbytesleft >= 2) { @@ -406,9 +406,9 @@ static size_t cp850_pull(void *cd, char **inbuf, size_t *inbytesleft, return 0; } -struct charset_functions cp850_functions = {"CP850", cp850_pull, cp850_push}; +struct charset_functions CP850_functions = {"CP850", CP850_pull, CP850_push}; -NTSTATUS charset_cp850_init(void) +NTSTATUS charset_CP850_init(void) { - return smb_register_charset(&cp850_functions); + return smb_register_charset(&CP850_functions); } -- cgit