From 70b02f704c75bdc1b55438ac975894f476c5e62f Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Sun, 18 May 2008 09:45:53 +0000 Subject: [PATCH] * Minor changes: add quotes between launched program name, update copyright. --- src/zzuf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zzuf.c b/src/zzuf.c index ab5672b..52e42bc 100644 --- a/src/zzuf.c +++ b/src/zzuf.c @@ -639,7 +639,7 @@ static void spawn_children(struct opts *opts) if(opts->verbose) { finfo(stderr, opts, opts->child[i].seed); - fprintf(stderr, "launched %s\n", opts->newargv[0]); + fprintf(stderr, "launched `%s'\n", opts->newargv[0]); } opts->lastlaunch = now; @@ -1141,7 +1141,7 @@ static void *get_entry(char const *name) static void version(void) { printf("zzuf %s\n", PACKAGE_VERSION); - printf("Copyright (C) 2002, 2007 Sam Hocevar \n"); + printf("Copyright (C) 2002, 2007-2008 Sam Hocevar \n"); printf("This is free software. You may redistribute copies of it under the\n"); printf("terms of the Do What The Fuck You Want To Public License, Version 2\n"); printf(".\n");