I changed the C file at all three places where it was giving error and that resolved the issue.
>From line 63, I removed the numeric value present in the function call. --- if (ctime_r(clock, buf) == buf) >From line 63, I removed the numeric value present in the function call. --- if (asctime_r(tm, buf) == buf) In line 139, I added result variable in the function call. --- readdir_r(dirp, entry, result); -- This message was sent on behalf of [email protected] at openSubscriber.com http://www.opensubscriber.com/message/[email protected]/8484593.html
