From 9799810df94af7fa67dc23106b407ffed2dc0ec4 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Thu, 26 Nov 2009 13:23:56 +0000 Subject: [PATCH] daemon: program_name must be defined for Gnulib error module. --- daemon/guestfsd.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daemon/guestfsd.c b/daemon/guestfsd.c index 8d0154a..520a4a4 100644 --- a/daemon/guestfsd.c +++ b/daemon/guestfsd.c @@ -115,6 +115,9 @@ winsock_init (void) const char *sysroot = "/sysroot"; /* No trailing slash. */ int sysroot_len = 8; +/* Not used explicitly, but required by the gnulib 'error' module. */ +const char *program_name = "guestfsd"; + static void usage (void) { -- 1.8.3.1