diff options
author | Martin Pool <mbp@samba.org> | 2003-02-21 03:05:55 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2003-02-21 03:05:55 +0000 |
commit | 1fc2976e14f8b79c85514d7947744bc495513670 (patch) | |
tree | 523b95ec8df36aa63d2ac5a6cc20117d6243f114 /source3/lib/util_unistr.c | |
parent | 5bec7f5fcac1a3e5a48b04f140b96f03b88f0965 (diff) | |
download | samba-1fc2976e14f8b79c85514d7947744bc495513670.tar.gz samba-1fc2976e14f8b79c85514d7947744bc495513670.tar.bz2 samba-1fc2976e14f8b79c85514d7947744bc495513670.zip |
Doxygen janitor
(This used to be commit 367997562998adb3f80602596c770d9ac319065b)
Diffstat (limited to 'source3/lib/util_unistr.c')
-rw-r--r-- | source3/lib/util_unistr.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/source3/lib/util_unistr.c b/source3/lib/util_unistr.c index 5c9b4c783b..522ab7eb40 100644 --- a/source3/lib/util_unistr.c +++ b/source3/lib/util_unistr.c @@ -95,9 +95,14 @@ static int check_dos_char(smb_ucs2_t c) return (c == c2); } -/******************************************************************* -load the valid character map table -********************************************************************/ +/** + * Load the valid character map table from <tt>valid.dat</tt> or + * create from the configured codepage. + * + * This function is called whenever the configuration is reloaded. + * However, the valid character table is not changed if it's loaded + * from a file, because we can't unmap files. + **/ void init_valid_table(void) { static int initialised; @@ -114,6 +119,7 @@ void init_valid_table(void) return; } + /* Otherwise, using a dynamically loaded one. */ if (valid_table) free(valid_table); DEBUG(2,("creating default valid table\n")); @@ -128,6 +134,7 @@ void init_valid_table(void) } + /******************************************************************* Write a string in (little-endian) unicode format. src is in the current DOS codepage. len is the length in bytes of the |