diff options
author | Werner Koch <[email protected]> | 2008-10-20 13:53:23 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-10-20 13:53:23 +0000 |
commit | 0a5f7424660e404e5fd0361b9331d154acf01d6c (patch) | |
tree | b84fb5a994045e12eb326441d8c924094bd915cd /scd/command.c | |
parent | Fix a bug in estream_snprintf. Found by a failed t-gettime under Windows. (diff) | |
download | gnupg-0a5f7424660e404e5fd0361b9331d154acf01d6c.tar.gz gnupg-0a5f7424660e404e5fd0361b9331d154acf01d6c.zip |
Marked all unused args on non-W32 platforms.
Diffstat (limited to '')
-rw-r--r-- | scd/command.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scd/command.c b/scd/command.c index 4c55e6167..b835aac73 100644 --- a/scd/command.c +++ b/scd/command.c @@ -1502,6 +1502,8 @@ cmd_unlock (assuan_context_t ctx, char *line) ctrl_t ctrl = assuan_get_pointer (ctx); int rc = 0; + (void)line; + if (locked_session) { if (locked_session != ctrl->server_local) @@ -1624,6 +1626,8 @@ cmd_restart (assuan_context_t ctx, char *line) { ctrl_t ctrl = assuan_get_pointer (ctx); + (void)line; + if (ctrl->app_ctx) { release_application (ctrl->app_ctx); @@ -1646,6 +1650,8 @@ cmd_restart (assuan_context_t ctx, char *line) static int cmd_disconnect (assuan_context_t ctx, char *line) { + (void)ctx; + (void)line; return gpg_error (GPG_ERR_NOT_IMPLEMENTED); } |