rename wind_punycode_toascii to wind_punycode_label_toascii

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22595 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-02-12 11:59:05 +00:00
parent eddf3cbee8
commit 97fafacb58
4 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,9 @@
2008-02-12 Love H<>rnquist <20>strand <lha@it.su.se>
* rename wind_punycode_toascii to wind_punycode_label_toascii
* stringprep.c: Move else to make it work again.
2008-02-11 Love H<>rnquist <20>strand <lha@it.su.se>
* Add partial support for LDAP-prep Insignificant Character Handling

View File

@@ -55,7 +55,7 @@ main(void)
size_t len;
len = sizeof(buf);
ret = wind_punycode_toascii(e->val, e->len, buf, &len);
ret = wind_punycode_label_toascii(e->val, e->len, buf, &len);
if (ret < 0) {
printf("punycode %u (%s) failed: %d\n", i, e->description, ret);
++failures;

View File

@@ -4,7 +4,7 @@ HEIMDAL_WIND_1.0 {
global:
wind_stringprep;
wind_profile;
wind_punycode_toascii;
wind_punycode_label_toascii;
wind_utf8ucs4;
wind_utf8ucs4_length;
wind_ucs4utf8;

View File

@@ -63,8 +63,8 @@ int wind_stringprep(const unsigned *in, size_t in_len,
wind_profile_flags flags);
int wind_profile(const char *, wind_profile_flags *);
int wind_punycode_toascii(const uint32_t *in, size_t in_len,
char *out, size_t *out_len);
int wind_punycode_label_toascii(const uint32_t *, size_t,
char *, size_t *);
int wind_utf8ucs4(const char *, uint32_t *, size_t *);
int wind_utf8ucs4_length(const char *, size_t *);