diff options
author | Werner Koch <wk@gnupg.org> | 2011-09-28 15:41:58 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2011-09-28 15:41:58 +0200 |
commit | ed8e267859a00233fee89a6b1b7fb3d74ceced96 (patch) | |
tree | e74d7b7af18297021f1e7548899d07badb464a0a /g10/gpgv.c | |
parent | Allow arbitrary timeouts with dotlock. (diff) | |
download | gnupg2-ed8e267859a00233fee89a6b1b7fb3d74ceced96.tar.xz gnupg2-ed8e267859a00233fee89a6b1b7fb3d74ceced96.zip |
Add a flag parameter to dotlock_create.
This allows us to extend this function in the future.
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r-- | g10/gpgv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index 9328343a1..8ca675289 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -507,9 +507,10 @@ dotlock_disable (void) } dotlock_t -dotlock_create (const char *file_to_lock) +dotlock_create (const char *file_to_lock, unsigned int flags) { (void)file_to_lock; + (void)flags; return NULL; } |