diff options
author | Stefan Bellon <[email protected]> | 2003-07-31 19:12:32 +0000 |
---|---|---|
committer | Stefan Bellon <[email protected]> | 2003-07-31 19:12:32 +0000 |
commit | c7fdd03e1a04473f7385cdbe64dad8f73ad403c9 (patch) | |
tree | 6bdc410461e08723f69024021caf732934b7f67e | |
parent | * gnupg.spec.in: Rework much of the spec to use %-macros throughout. Fix (diff) | |
download | gnupg-c7fdd03e1a04473f7385cdbe64dad8f73ad403c9.tar.gz gnupg-c7fdd03e1a04473f7385cdbe64dad8f73ad403c9.zip |
Removed trailing semicolon to avoid error with Norcroft C
-rw-r--r-- | g10/ChangeLog | 5 | ||||
-rw-r--r-- | g10/gpgv.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 21e5064c3..fed22591f 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,8 @@ +2003-07-31 Stefan Bellon <[email protected]> + + * gpgv.c [read_trust_options]: Removed trailing semicolon to avoid + "declaration with no effect" error with Norcroft C. + 2003-07-30 Werner Koch <[email protected]> * passphrase.c (agent_send_all_options): Make use of $GPG_TTY. diff --git a/g10/gpgv.c b/g10/gpgv.c index 3c06137aa..fcd165dfe 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -237,7 +237,7 @@ check_signatures_trust( PKT_signature *sig ) } void -read_trust_options(byte *trust_model,ulong *created,ulong *nextcheck) {}; +read_trust_options(byte *trust_model,ulong *created,ulong *nextcheck) {} /* Stub: * We don't have the trustdb , so we have to provide some stub functions |