From 6cf9a00e817c8faa512bc09b3db21d1952ec5a54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Wed, 18 Jan 2012 18:13:19 +0100 Subject: [PATCH] Fix description in xml-rpc chmod methods (cherry picked from commit ef241ba919bccf997961a99844e8dfaed96ae43a) --- include/RequestManagerChmod.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/RequestManagerChmod.h b/include/RequestManagerChmod.h index 815ba561a7..60282af845 100644 --- a/include/RequestManagerChmod.h +++ b/include/RequestManagerChmod.h @@ -31,7 +31,7 @@ class RequestManagerChmod : public Request protected: RequestManagerChmod(const string& method_name, const string& help, - const string& params = "A:siii") + const string& params = "A:siiiiiiiiii") :Request(method_name,params,help){}; ~RequestManagerChmod(){}; @@ -50,7 +50,7 @@ class VirtualMachineChmod : public RequestManagerChmod public: VirtualMachineChmod(): RequestManagerChmod("VirtualMachineChmod", - "Changes ownership of a virtual machine") + "Changes permission bits of a virtual machine") { Nebula& nd = Nebula::instance(); pool = nd.get_vmpool(); @@ -68,7 +68,7 @@ class TemplateChmod : public RequestManagerChmod public: TemplateChmod(): RequestManagerChmod("TemplateChmod", - "Changes ownership of a virtual machine template") + "Changes permission bits of a virtual machine template") { Nebula& nd = Nebula::instance(); pool = nd.get_tpool(); @@ -87,7 +87,7 @@ class VirtualNetworkChmod: public RequestManagerChmod public: VirtualNetworkChmod(): RequestManagerChmod("VirtualNetworkChmod", - "Changes ownership of a virtual network") + "Changes permission bits of a virtual network") { Nebula& nd = Nebula::instance(); pool = nd.get_vnpool(); @@ -106,7 +106,7 @@ class ImageChmod: public RequestManagerChmod public: ImageChmod(): RequestManagerChmod("ImageChmod", - "Changes ownership of an image") + "Changes permission bits of an image") { Nebula& nd = Nebula::instance(); pool = nd.get_ipool();