# HG changeset patch # User Matti Hamalainen # Date 1508422709 -10800 # Node ID 1920a31927b2398bdcbf3886974fb168617c9aa3 # Parent 1d2d214ac433b7cb1028020ddc0e64f5bddae6ca Fix th_pstrcpy() call to th_pstr_cpy() diff -r 1d2d214ac433 -r 1920a31927b2 th_config.c --- a/th_config.c Thu Oct 19 17:17:09 2017 +0300 +++ b/th_config.c Thu Oct 19 17:18:29 2017 +0300 @@ -512,7 +512,7 @@ parseMode = PM_IDLE; break; case ITEM_STRING: - th_pstrcpy(item->v.val_str, tmpStr); + th_pstr_cpy(item->v.val_str, tmpStr); prevMode = parseMode; parseMode = PM_IDLE; break;