aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2009-04-03 08:36:01 +0000
committerWerner Koch <[email protected]>2009-04-03 08:36:01 +0000
commit5809572eed9ac2ed694317e036a3cead8e8946d1 (patch)
treefd18b325890ba49323721bf05e735cf80a5f59bb
parentAdd hack for the inquiry feature. (diff)
downloadlibassuan-5809572eed9ac2ed694317e036a3cead8e8946d1.tar.gz
libassuan-5809572eed9ac2ed694317e036a3cead8e8946d1.zip
Doc fixes.
-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 <[email protected]>
+
+ * assuan-handler.c (std_cmd_table): Remove second OPTION entry.
+
2009-02-24 Werner Koch <[email protected]>
* 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 }
};