diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-12 15:25:04 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-04-13 14:47:07 +1000 |
commit | c8a5fa3fa938e635327b1d65964ba599a92f233f (patch) | |
tree | b646e4371bee22d308034b9610660eea137afdea /source3/lib | |
parent | b6a8418ff6918e6c01d603f69e28167fbcd91dee (diff) | |
download | samba-c8a5fa3fa938e635327b1d65964ba599a92f233f.tar.gz samba-c8a5fa3fa938e635327b1d65964ba599a92f233f.tar.xz samba-c8a5fa3fa938e635327b1d65964ba599a92f233f.zip |
s3-charcnv: make pull_ucs2 static
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/charcnv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c index 3fd574b9853..6e5b606e64d 100644 --- a/source3/lib/charcnv.c +++ b/source3/lib/charcnv.c @@ -971,7 +971,7 @@ bool push_utf8_talloc(TALLOC_CTX *ctx, char **dest, const char *src, The resulting string in "dest" is always null terminated. **/ -size_t pull_ucs2(const void *base_ptr, char *dest, const void *src, size_t dest_len, size_t src_len, int flags) +static size_t pull_ucs2(const void *base_ptr, char *dest, const void *src, size_t dest_len, size_t src_len, int flags) { size_t size = 0; size_t ucs2_align_len = 0; |