diff options
author | Paul Green <paulg@samba.org> | 2003-08-27 15:05:05 +0000 |
---|---|---|
committer | Paul Green <paulg@samba.org> | 2003-08-27 15:05:05 +0000 |
commit | ce0469ad1c01b36d3f0000756f6917478df37d02 (patch) | |
tree | 266f736c702f7649ea713aca46263bd8cd3dbfd6 /source/modules | |
parent | 5b20494aff3da9414ac0100220de96750c3f06a3 (diff) | |
download | samba-ce0469ad1c01b36d3f0000756f6917478df37d02.tar.gz samba-ce0469ad1c01b36d3f0000756f6917478df37d02.tar.xz samba-ce0469ad1c01b36d3f0000756f6917478df37d02.zip |
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).
Diffstat (limited to 'source/modules')
-rw-r--r-- | source/modules/CP850.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/modules/CP850.c b/source/modules/CP850.c index a17015ffb6f..4923f84d50f 100644 --- a/source/modules/CP850.c +++ b/source/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); } |