diff options
Diffstat (limited to 'agent/protect-tool.c')
-rw-r--r-- | agent/protect-tool.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/agent/protect-tool.c b/agent/protect-tool.c index 00c0748e1..0ba31c1a0 100644 --- a/agent/protect-tool.c +++ b/agent/protect-tool.c @@ -805,12 +805,14 @@ agent_askpin (ctrl_t ctrl, * to stdout. */ int agent_write_private_key (const unsigned char *grip, - const void *buffer, size_t length, int force) + const void *buffer, size_t length, int force, + time_t timestamp) { char hexgrip[40+4+1]; char *p; (void)force; + (void)timestamp; bin2hex (grip, 20, hexgrip); strcpy (hexgrip+40, ".key"); |