ports/net/uucp/patches/patch-uuconv_c

14 lines
313 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
use %s with fprintf
--- uuconv.c.orig 2003-05-29 08:08:47.000000000 +0200
+++ uuconv.c 2003-11-11 21:17:58.000000000 +0100
@@ -676,7 +676,7 @@ uvwrite_chat_script (e, pzarg)
{
if ((*pz)[0] != '-' && pz != pzarg)
fprintf (e, " ");
- fprintf (e, *pz);
+ fprintf (e, "%s", *pz);
}
}