summaryrefslogtreecommitdiffstats
path: root/libtdenetwork/libgpgme-copy/assuan
diff options
context:
space:
mode:
Diffstat (limited to 'libtdenetwork/libgpgme-copy/assuan')
-rw-r--r--libtdenetwork/libgpgme-copy/assuan/assuan-buffer.c2
-rw-r--r--libtdenetwork/libgpgme-copy/assuan/assuan-inquire.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/libtdenetwork/libgpgme-copy/assuan/assuan-buffer.c b/libtdenetwork/libgpgme-copy/assuan/assuan-buffer.c
index 7a1879877..b06025b46 100644
--- a/libtdenetwork/libgpgme-copy/assuan/assuan-buffer.c
+++ b/libtdenetwork/libgpgme-copy/assuan/assuan-buffer.c
@@ -488,7 +488,7 @@ _assuan_cookie_write_flush (void *cookie)
* data out @buffer may be passed as NULL (in which case @length must
* also be 0); however when used by a client this flush operation does
* also send the terminating "END" command to terminate the reponse on
- * a INTQUIRE response. However, when assuan_transact() is used, this
+ * a INQUIRE response. However, when assuan_transact() is used, this
* function takes care of sending END itself.
*
* Return value: 0 on success or an error code
diff --git a/libtdenetwork/libgpgme-copy/assuan/assuan-inquire.c b/libtdenetwork/libgpgme-copy/assuan/assuan-inquire.c
index 897e0773b..d8c52d09a 100644
--- a/libtdenetwork/libgpgme-copy/assuan/assuan-inquire.c
+++ b/libtdenetwork/libgpgme-copy/assuan/assuan-inquire.c
@@ -141,7 +141,7 @@ assuan_inquire (assuan_context_t ctx, const char *keyword,
{
assuan_error_t rc;
struct membuf mb;
- char cmdbuf[LINELENGTH-10]; /* (10 = strlen ("INTQUIRE ")+CR,LF) */
+ char cmdbuf[LINELENGTH-10]; /* (10 = strlen ("INQUIRE ")+CR,LF) */
unsigned char *line, *p;
int linelen;
int nodataexpected;
@@ -162,7 +162,7 @@ assuan_inquire (assuan_context_t ctx, const char *keyword,
else
init_membuf (&mb, maxlen? maxlen:1024, maxlen);
- strcpy (stpcpy (cmdbuf, "INTQUIRE "), keyword);
+ strcpy (stpcpy (cmdbuf, "INQUIRE "), keyword);
rc = assuan_write_line (ctx, cmdbuf);
if (rc)
goto leave;