- if (b) - sprintf(b, "..."); + if (b) { + memcpy(b, "...", sizeof("...")); + }
What's wrong with strcpy? :-) (I doubt OpenBSD warns about that too). Paolo
- if (b) - sprintf(b, "..."); + if (b) { + memcpy(b, "...", sizeof("...")); + }
What's wrong with strcpy? :-) (I doubt OpenBSD warns about that too). Paolo