Renamed old to new zone-names (CityCall, RegioCall, GermanCall, GlobalCall)

This commit is contained in:
akool 1998-06-07 21:03:26 +00:00
parent 34044cfa1d
commit 15abb04d17
1 changed files with 8 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $Id: isdntools.c,v 1.20 1998/05/11 19:43:49 luethje Exp $
/* $Id: isdntools.c,v 1.21 1998/06/07 21:03:26 akool Exp $
*
* ISDN accounting for isdn4linux. (Utilities)
*
@ -19,6 +19,9 @@
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* $Log: isdntools.c,v $
* Revision 1.21 1998/06/07 21:03:26 akool
* Renamed old to new zone-names (CityCall, RegioCall, GermanCall, GlobalCall)
*
* Revision 1.20 1998/05/11 19:43:49 luethje
* Some changes for "vorwahlen.dat"
*
@ -1020,10 +1023,10 @@ const char* area_diff_string(char* number1, char* number2)
{
switch(area_diff(number1,number2))
{
case AREA_LOCAL : return "Nahbereich"; break;
case AREA_R50 : return "Region 50"; break;
case AREA_FAR : return "Fernzone"; break;
case AREA_ABROAD: return "Ausland"; break;
case AREA_LOCAL : return "CityCall"; break;
case AREA_R50 : return "RegioCall"; break;
case AREA_FAR : return "GermanCall"; break;
case AREA_ABROAD: return "GlobalCall"; break;
default : break;
}