diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-07 20:52:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-07 20:52:28 +0000 |
commit | 586a3526f0e1a214bed75eb3d9d17af50edd522f (patch) | |
tree | d076de41547598e7065070588f34eb5ee9b65486 /gnu/libexec/uucp/uuconv | |
parent | 79021930af75e9267855ee96b3fa02e442cdfaa5 (diff) |
use %s with fprintf
Diffstat (limited to 'gnu/libexec/uucp/uuconv')
-rw-r--r-- | gnu/libexec/uucp/uuconv/uuconv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/libexec/uucp/uuconv/uuconv.c b/gnu/libexec/uucp/uuconv/uuconv.c index 073b744332d..4116b5ce05b 100644 --- a/gnu/libexec/uucp/uuconv/uuconv.c +++ b/gnu/libexec/uucp/uuconv/uuconv.c @@ -26,7 +26,7 @@ #include "uucnfi.h" #if USE_RCS_ID -const char uuconv_rcsid[] = "$Id: uuconv.c,v 1.1 1995/10/18 08:38:42 deraadt Exp $"; +const char uuconv_rcsid[] = "$Id: uuconv.c,v 1.2 2000/07/07 20:52:27 deraadt Exp $"; #endif #include "getopt.h" @@ -684,7 +684,7 @@ uvwrite_chat_script (e, pzarg) { if ((*pz)[0] != '-' && pz != pzarg) fprintf (e, " "); - fprintf (e, *pz); + fprintf (e, "%s", *pz); } } |