Community
Participate
Working Groups
Build Identifier: In TCF agent, there is already a set_errno() API that can associate an error message with an error number; however this error message is a fixed string. in some cases it would be possible to use a more complex string with variable arguments. This can of course be done by first calling sprintf(), storing a result in a buffer and calling set_errno() with this buffer but it would be great if a generic API would do this. Reproducible: Always
Created attachment 199343 [details] Patch for enhancment request
I have committed the patch - with minor changes to get rid of compiler warnings. Thanks!