From: Roger Pau Monne Date: Thu, 6 Oct 2011 16:24:36 +0000 (+0100) Subject: xenbackendd: fix incorrect usage of pidfile X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d0b1373b70b5842b81dcdb74f3293d16857ff4ce;p=xen.git xenbackendd: fix incorrect usage of pidfile Fix xenbackendd ignoring the pidfile passed through the command line. Signed-off-by: Roger Pau Monne Acked-by: Christoph Egger Committed-by: Ian Jackson --- diff --git a/tools/xenbackendd/xenbackendd.c b/tools/xenbackendd/xenbackendd.c index a379bae88d..a659baf6c0 100644 --- a/tools/xenbackendd/xenbackendd.c +++ b/tools/xenbackendd/xenbackendd.c @@ -169,7 +169,7 @@ main(int argc, char * const argv[]) log_file = optarg; break; case 'p': - pidfile = pidfile; + pidfile = optarg; case 's': vbd_script = optarg; break;