From 8cae89b5aa3ce7305052bd2e776399712cb37e8a Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Fri, 29 Oct 2010 03:29:17 +0100 Subject: * lib/pipeline.c, lib/pipeline.h: Rename command to pipecmd, command_* to pipecmd_*, and COMMAND_* to PIPECMD_*. Update all callers. --- src/manconv_client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/manconv_client.c') diff --git a/src/manconv_client.c b/src/manconv_client.c index a2d0d2e1..7533b14c 100644 --- a/src/manconv_client.c +++ b/src/manconv_client.c @@ -68,7 +68,7 @@ void add_manconv (pipeline *p, const char *source, const char *target) { struct manconv_codes *codes = xmalloc (sizeof *codes); char *name; - command *cmd; + pipecmd *cmd; if (STREQ (source, "UTF-8") && STREQ (target, "UTF-8")) return; @@ -92,7 +92,7 @@ void add_manconv (pipeline *p, const char *source, const char *target) name = appendstr (name, " -t ", codes->to, NULL); if (quiet >= 2) name = appendstr (name, " -q", NULL); - cmd = command_new_function (name, &manconv_stdin, &free_manconv_codes, + cmd = pipecmd_new_function (name, &manconv_stdin, &free_manconv_codes, codes); free (name); pipeline_command (p, cmd); -- cgit v1.2.3