diff options
author | Jeremy Allison <jra@samba.org> | 2003-08-23 01:59:14 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-08-23 01:59:14 +0000 |
commit | dac11b890b3e81f8849340e582b7f397a612baba (patch) | |
tree | 91c9b21264d90486a81696f3a03ef0842abd00db /source3/lib/charcnv.c | |
parent | e745d4e602698e0a49a9e90c918049b4096fbba8 (diff) | |
download | samba-dac11b890b3e81f8849340e582b7f397a612baba.tar.gz samba-dac11b890b3e81f8849340e582b7f397a612baba.tar.xz samba-dac11b890b3e81f8849340e582b7f397a612baba.zip |
Half-way though the big conversion of all nmbd access to wire elements being
converted to pull/push_ascii. This will not work right at the moment for non
English codepages, but compiles - I will finish the work over the weekend.
Then nmbd should be completely codepage correct.
Jeremy.
(This used to be commit 236d6adadf32397b28028ea82ae2ec027366f7c8)
Diffstat (limited to 'source3/lib/charcnv.c')
-rw-r--r-- | source3/lib/charcnv.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c index 02d94582fbf..7f372b358fc 100644 --- a/source3/lib/charcnv.c +++ b/source3/lib/charcnv.c @@ -529,6 +529,11 @@ size_t push_ascii_pstring(void *dest, const char *src) return push_ascii(dest, src, sizeof(pstring), STR_TERMINATE); } +size_t push_ascii_nstring(void *dest, const char *src) +{ + return push_ascii(dest, src, sizeof(nstring), STR_TERMINATE); +} + /** * Copy a string from a dos codepage source to a unix char* destination. * @@ -582,6 +587,11 @@ size_t pull_ascii_fstring(char *dest, const void *src) return pull_ascii(dest, src, sizeof(fstring), -1, STR_TERMINATE); } +size_t pull_ascii_nstring(char *dest, const void *src) +{ + return pull_ascii(dest, src, sizeof(nstring), sizeof(nstring), STR_TERMINATE); +} + /** * Copy a string from a char* src to a unicode destination. * |