[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Many network names look the same in xgnokii
From: |
Daniele Forsi |
Subject: |
Re: Many network names look the same in xgnokii |
Date: |
Sat, 29 Jan 2005 12:45:38 +0100 |
User-agent: |
KMail/1.4.3 |
Wednesday 26 January 2005 00:29, Pawel Kot wrote:
> It should be fine right now. Please give it a try.
it works with this change:
Index: common/gsm-networks.c
===================================================================
RCS file: /cvsroot/gnokii/gnokii/common/gsm-networks.c,v
retrieving revision 1.39
diff -r1.39 gsm-networks.c
808c808
< char country_code[4];
---
> char country_code[5];
810,811c810,811
< snprintf(country_code, 3, " %2s", gn_country_code_get(country_name));
< country_code[3] = 0;
---
> snprintf(country_code, 4, "%3s ", gn_country_code_get(country_name));
> country_code[4] = 0;