--- zzzz-none-000/linux-2.6.32.61/drivers/telephony/ixj.c 2013-06-10 09:43:48.000000000 +0000 +++ ar10-7272-687/linux-2.6.32.61/drivers/telephony/ixj.c 2010-04-08 11:00:21.000000000 +0000 @@ -3190,12 +3190,12 @@ ixj_fsk_alloc(j); - strlcpy(sdmf1, j->cid_send.month, sizeof(sdmf1)); - strlcat(sdmf1, j->cid_send.day, sizeof(sdmf1)); - strlcat(sdmf1, j->cid_send.hour, sizeof(sdmf1)); - strlcat(sdmf1, j->cid_send.min, sizeof(sdmf1)); - strlcpy(sdmf2, j->cid_send.number, sizeof(sdmf2)); - strlcpy(sdmf3, j->cid_send.name, sizeof(sdmf3)); + strcpy(sdmf1, j->cid_send.month); + strcat(sdmf1, j->cid_send.day); + strcat(sdmf1, j->cid_send.hour); + strcat(sdmf1, j->cid_send.min); + strcpy(sdmf2, j->cid_send.number); + strcpy(sdmf3, j->cid_send.name); len1 = strlen(sdmf1); len2 = strlen(sdmf2); @@ -3340,12 +3340,12 @@ ixj_pre_cid(j); } j->flags.cidcw_ack = 0; - strlcpy(sdmf1, j->cid_send.month, sizeof(sdmf1)); - strlcat(sdmf1, j->cid_send.day, sizeof(sdmf1)); - strlcat(sdmf1, j->cid_send.hour, sizeof(sdmf1)); - strlcat(sdmf1, j->cid_send.min, sizeof(sdmf1)); - strlcpy(sdmf2, j->cid_send.number, sizeof(sdmf2)); - strlcpy(sdmf3, j->cid_send.name, sizeof(sdmf3)); + strcpy(sdmf1, j->cid_send.month); + strcat(sdmf1, j->cid_send.day); + strcat(sdmf1, j->cid_send.hour); + strcat(sdmf1, j->cid_send.min); + strcpy(sdmf2, j->cid_send.number); + strcpy(sdmf3, j->cid_send.name); len1 = strlen(sdmf1); len2 = strlen(sdmf2);