Hi,
just info,
on smsc_smpp.c
tmp = octstr_format("%lu", strtoll(octstr_get_cstr(msgid), NULL, 10));
on my solaris 9, this is always fail (always "0")
this workaround work :
sprintf(cl, "%lld", strtoll(octstr_get_cstr(msgid), NULL, 10));
tmp = octstr_create(cl);
tmp = octstr_create(cl);
