summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/assuan.texi3
-rw-r--r--src/ChangeLog4
-rw-r--r--src/assuan-handler.c1
3 files changed, 7 insertions, 1 deletions
diff --git a/doc/assuan.texi b/doc/assuan.texi
index b0c0451..a65b506 100644
--- a/doc/assuan.texi
+++ b/doc/assuan.texi
@@ -364,6 +364,9 @@ This command is reserved for future extensions.
This command is reserved for future extensions. Not yet specified as
we don't implement it in the first phase. See my mail to gpa-dev on
2001-10-25 about the rationale for measurements against local attacks.
+
+@item NOP
+No operation. Returns OK without any action.
@end table
diff --git a/src/ChangeLog b/src/ChangeLog
index 3d875fb..b2ed9b2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2009-04-03 Werner Koch <wk@g10code.com>
+
+ * assuan-handler.c (std_cmd_table): Remove second OPTION entry.
+
2009-02-24 Werner Koch <wk@g10code.com>
* assuan-buffer.c (assuan_send_data): Add hack to optionally send
diff --git a/src/assuan-handler.c b/src/assuan-handler.c
index b940bfd..007bba2 100644
--- a/src/assuan-handler.c
+++ b/src/assuan-handler.c
@@ -253,7 +253,6 @@ static struct {
{ "INPUT", std_handler_input, 0 },
{ "OUTPUT", std_handler_output, 0 },
- { "OPTION", std_handler_option, 1 },
{ NULL, NULL, 0 }
};