From ebccf9c788d515c6cebfc0eaf837f12c33ab4830 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 2 May 2008 21:13:31 +0000 Subject: [PATCH] -Fix problem where dispatched requests weren't using the new semantics for key/cert combination git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1264 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/sbin/xcatd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server-2.0/sbin/xcatd b/xCAT-server-2.0/sbin/xcatd index b76e03490..7b027fa7f 100755 --- a/xCAT-server-2.0/sbin/xcatd +++ b/xCAT-server-2.0/sbin/xcatd @@ -857,7 +857,7 @@ sub dispatch_request { $$progname.=": connection to ".$ENV{XCATHOST}; eval { undef $_->{'_xcatdest'}; - xCAT::Client::submit_request($_,\&dispatch_callback,$xcatdir."/cert/server-key.pem",$xcatdir."/cert/server-cert.pem",$xcatdir."/cert/ca.pem"); + xCAT::Client::submit_request($_,\&dispatch_callback,$xcatdir."/cert/server-cred.pem",$xcatdir."/cert/server-cred.pem",$xcatdir."/cert/ca.pem"); }; if ($@) { dispatch_callback({error=>["Error dispatching command to ".$ENV{XCATHOST}.""],errorcode=>[1]});