diff options
author | wiz <wiz@pkgsrc.org> | 2003-09-08 14:17:19 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-09-08 14:17:19 +0000 |
commit | 124e36ec4ef1241eb744a9eb55ac120ea06e97f3 (patch) | |
tree | 6d3dab657f239c54287fc22dd6d5a25a423ba802 /comms/scmxx/patches | |
parent | 48f01a2f732e289fa614995c326deec77a6b5aa9 (diff) | |
download | pkgsrc-124e36ec4ef1241eb744a9eb55ac120ea06e97f3.tar.gz |
Update to 0.6.4.
version 0.6.4
Features:
This version adds UCS-2 phonebook transfer mode (default with GSM
fallback). (thanks to Alexander Kochetkov)
Fixes:
The range for phonebook CS and RD again and are requested correctly
again. Only 5 entries at once to prevent timeouts with slow
phones/SIM-cards. (thanks to Alexander Kochetkov)
There are also other small fixes.
Relieve kleink of his MAINTAINER duties, on his request.
Diffstat (limited to 'comms/scmxx/patches')
-rw-r--r-- | comms/scmxx/patches/patch-aa | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/comms/scmxx/patches/patch-aa b/comms/scmxx/patches/patch-aa index 33156c45076..1c2290565ea 100644 --- a/comms/scmxx/patches/patch-aa +++ b/comms/scmxx/patches/patch-aa @@ -1,22 +1,13 @@ -$NetBSD: patch-aa,v 1.5 2003/04/18 16:18:32 wiz Exp $ +$NetBSD: patch-aa,v 1.6 2003/09/08 14:17:20 wiz Exp $ ---- src/s35_pbook.c.orig Sun Mar 9 13:24:24 2003 +--- src/s35_pbook.c.orig Mon Sep 8 15:56:36 2003 +++ src/s35_pbook.c -@@ -222,7 +222,7 @@ void send_pb_s35 (char* file, char* phon - if (token[strlen(token)-1]=='"') { +@@ -229,7 +229,7 @@ void send_pb_s35 (char* file, char* phon token[strlen(token)-1]=0; } -- wide_str=convert_to_internal(nl_langinfo(CODESET),token,strlen(token)); -+ wide_str=convert_to_internal("char",token,strlen(token)); - token=convert_to_gsm(wide_str); - mem_realloc(wide_str,0); - if (strlen(token)>text_length+2) { -@@ -352,7 +352,7 @@ void get_pb_s35 (char* file, char* phone - token=(char *)strtok(NULL,""); - //character conversion on token 4 - wide_str=convert_from_gsm(token); -- token=convert_from_internal(nl_langinfo(CODESET),wide_str,2); -+ token=convert_from_internal("char",wide_str,2); - mem_realloc(wide_str,0); - //write converted token 4, also write a newline to make the file readable - if (strlen(file)) { + entry_len=strlen(token); +- wide_str=convert_to_internal(nl_langinfo(CODESET),token,entry_len); ++ wide_str=convert_to_internal("char",token,entry_len); + if (unicode) { + token=convert_to_ucs2(wide_str); + } |