summaryrefslogtreecommitdiff
path: root/services
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-05 04:33:38 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:36:49 -0500
commit9698b2c2821986fdf2bb66dc4a52b2d50fbea151 (patch)
treee8510118a4110068f1d74a59b04af6ced4abce39 /services
parent02db88bb88aca33bec5c9c0f445008f5043a88c3 (diff)
downloadsamba-9698b2c2821986fdf2bb66dc4a52b2d50fbea151.tar.gz
samba-9698b2c2821986fdf2bb66dc4a52b2d50fbea151.tar.bz2
samba-9698b2c2821986fdf2bb66dc4a52b2d50fbea151.zip
r20538: Web Application Framework
- correct an error message in the JSON-RPC server - provide a common RPC request function - make it easier to have multiple pending RPC requests. this allows an application-specified request to return "not logged in"; authentication information to be requested and sent; and the original request to be reissued. - in statistics module, if a time is provided as zero, leave it blank rather than displaying 1 Jan 1970. this showed up in the last_used_at field in the SMB status report. - clean up makefile: remove no-longer-used hard-coded path and install target; remove "chmod" and "nice" commands which were part of the original skeleton, since that is not deemed appropriate for samba makefiles (This used to be commit 339ee73ce2809905f608b1003cc645231f256420)
Diffstat (limited to 'services')
-rw-r--r--services/request.esp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/request.esp b/services/request.esp
index 970ea6b4fb..1b33b61964 100644
--- a/services/request.esp
+++ b/services/request.esp
@@ -450,7 +450,7 @@ if (valid)
if (! valid)
{
error.setError(jsonrpc.Constant.ErrorCode.MethodNotFound,
- "Method `" + method + "` not found.");
+ "Method `" + jsonInput.method + "` not found.");
error.Send();
return;
}