diff options
author | David Shaw <[email protected]> | 2004-07-04 21:17:29 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-07-04 21:17:29 +0000 |
commit | d60d73a53b49b626eaaf222d3a10dd9a5cd3875a (patch) | |
tree | a6a090bee057d3955dd897a0151b061273070d5f | |
parent | * DETAILS: Document PLAINTEXT and PLAINTEXT_LENGTH. (diff) | |
download | gnupg-d60d73a53b49b626eaaf222d3a10dd9a5cd3875a.tar.gz gnupg-d60d73a53b49b626eaaf222d3a10dd9a5cd3875a.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 86c6ffb37..b7350b36d 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,3 +1,7 @@ +2004-07-04 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 - - - - |