blob: 1993e1133e1b85e5b65cc9888c6d712e67a20148 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- a/src/password.c
+++ b/src/password.c
@@ -300,6 +300,15 @@
size_t ic_inbytesleft,
ic_outbytesleft;
+#ifdef DISABLE_ICONV
+ /* support only latin */
+ int i;
+ for (i=0;i<length+1;i++) {
+ out_passwd[i*2] = in_passwd[i];
+ out_passwd[i*2+1] = 0;
+ }
+ return length*2;
+#else
// Max length is specified in character, but this function deals
// with bytes. So, multiply by two since we are going to create a
// UTF-16 string.
@@ -349,4 +358,5 @@
iconv_close(condesc);
return (max_length - ic_outbytesleft);
+#endif
}
|