From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roger Pau Monne Subject: [PATCH 1 of 9] xenbackendd: fix incorrect usage of pidfile Date: Fri, 30 Sep 2011 14:43:01 +0200 Message-ID: <47005b3da245e2be052b.1317386581@loki> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User Roger Pau Monne # Date 1317300282 -7200 # Node ID 47005b3da245e2be052b614c02ed212d3d2cecbd # Parent a422e2a4451e16dc791b293f41966b842fa4781d xenbackendd: fix incorrect usage of pidfile Fix xenbackendd ignoring the pidfile passed through the command line. Signed-off-by: Roger Pau Monne diff -r a422e2a4451e -r 47005b3da245 tools/xenbackendd/xenbackendd.c --- a/tools/xenbackendd/xenbackendd.c Sun Sep 18 00:26:52 2011 +0100 +++ b/tools/xenbackendd/xenbackendd.c Thu Sep 29 14:44:42 2011 +0200 @@ -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;