aboutsummaryrefslogtreecommitdiffstats
path: root/opie.c
diff options
context:
space:
mode:
Diffstat (limited to 'opie.c')
-rw-r--r--opie.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opie.c b/opie.c
index 06756121..26f3c93c 100644
--- a/opie.c
+++ b/opie.c
@@ -45,7 +45,7 @@ int do_otp(int sock, const char *command, struct query *ctl)
to64frombits(buffer, ctl->remotename, strlen(ctl->remotename));
suppress_tags = TRUE;
- gen_send(sock, buffer, sizeof(buffer));
+ gen_send(sock, "%s", buffer);
suppress_tags = FALSE;
if ((rval = gen_recv(sock, buffer, sizeof(buffer))))
@@ -72,7 +72,7 @@ int do_otp(int sock, const char *command, struct query *ctl)
to64frombits(buffer, response, strlen(response));
suppress_tags = TRUE;
- gen_send(sock, buffer, strlen(buffer));
+ gen_send(sock, "%s", buffer);
suppress_tags = FALSE;
if ((rval = gen_recv(sock, buffer, sizeof(buffer))))