Dear All, I am using Kannel stable version 1.4.1.
Operating CentOS 4.4 on X64 bit machine I have noticed issue that when I use black-list file containing numbers more than 9 digits It crash with segmentation fault. I have read documentation according to that 9 characters limit is on the machine with long variable length of 32bits But on my machine it should be of 64bit & should not crash. The black list file is according to specs.One number per line During configure command in Installation I found checking for long... yes checking size of long... 8 checking for long long... yes checking size of long long... 8 checking for log in -lm... yes i have also tried latest CVS. Also got segmentation fault. Hope to get reply soon.
From numhash.h
Phone number precision is limited according to sizeof(long) * in host machine. that is usually either 32 or 64 bits. In a * case of 32 bit longs, only last 9 digits are checked, otherwise * last 18 digits. This means that in some places several numbers * might map to same hash entry, and thus some caution is needed * specially with telephone number black lists Thanks in advance.
