diff options
author | David Shaw <[email protected]> | 2004-06-17 23:00:47 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-06-17 23:00:47 +0000 |
commit | 470c08b119bf23bc0400fa076bc375304b68447b (patch) | |
tree | 21a813e21cfbdbdb2158fb53b847486958c3e708 | |
parent | Updated. That is the fasted update I've ever seen; (diff) | |
download | gnupg-470c08b119bf23bc0400fa076bc375304b68447b.tar.gz gnupg-470c08b119bf23bc0400fa076bc375304b68447b.zip |
* ring-a-party: ElGamal -> Elgamal
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rwxr-xr-x | tools/ring-a-party | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 38903f47f..ca2ae046c 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,7 @@ +2004-06-17 David Shaw <[email protected]> + + * ring-a-party: ElGamal -> Elgamal + 2004-01-11 David Shaw <[email protected]> * convert-from-106, lspgpot: Check for gpg binary before diff --git a/tools/ring-a-party b/tools/ring-a-party index 1993e2732..01e0f3ff3 100755 --- a/tools/ring-a-party +++ b/tools/ring-a-party @@ -33,7 +33,7 @@ gpg --dry-run --with-fingerprint --with-colons $keyring \ | gawk -v "KEYRING=$hdrline" ' BEGIN { FS=":" algos[1] = "RSA"; - algos[16] = "ElGamal"; + algos[16] = "Elgamal"; algos[17] = "DSA"; any = 0; lines = -1; @@ -112,7 +112,3 @@ function printfpr20( s ) } ' | tee a.pub | gpg --print-mds - - - - |