aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2000-10-18 16:41:09 +0000
committerWerner Koch <[email protected]>2000-10-18 16:41:09 +0000
commitc59e59069c2df644e2a53d9b877ced5f54b3b6a4 (patch)
treeb40d7cd5645f08a4ba32963521661bf678ce854f
parent*** empty log message *** (diff)
downloadgnupg-c59e59069c2df644e2a53d9b877ced5f54b3b6a4.tar.gz
gnupg-c59e59069c2df644e2a53d9b877ced5f54b3b6a4.zip
Typo fixes.
-rw-r--r--checks/ChangeLog4
-rwxr-xr-xchecks/conventional-mdc.test9
-rw-r--r--g10/ChangeLog3
-rw-r--r--g10/misc.c4
4 files changed, 15 insertions, 5 deletions
diff --git a/checks/ChangeLog b/checks/ChangeLog
index 0af642df2..4fa2cb38b 100644
--- a/checks/ChangeLog
+++ b/checks/ChangeLog
@@ -1,3 +1,7 @@
+2000-10-18 Werner Koch <[email protected]>
+
+ * conventional-mdc.test: Add Rijndael and fix for empty plain texts.
+
Thu Feb 10 17:39:44 CET 2000 Werner Koch <[email protected]>
* mkdemodirs: Fixed the --clean loop.
diff --git a/checks/conventional-mdc.test b/checks/conventional-mdc.test
index 7d9616459..760ae0309 100755
--- a/checks/conventional-mdc.test
+++ b/checks/conventional-mdc.test
@@ -4,8 +4,13 @@
#info Checking conventional encryption
for i in 0 1 2 3 9 10 11 19 20 21 22 23 39 40 41 8192 32000 ; do
- for ciph in 3des cast5 blowfish twofish; do
- dd if=data-80000 of=z bs=1 count=$i 2>/dev/null
+ for ciph in 3des cast5 blowfish twofish rijndael; do
+ # *BSD's dd can't cope with a count of 0
+ if test "$i" = "0"; then
+ : >z
+ else
+ dd if=data-80000 of=z bs=1 count=$i 2>/dev/null
+ fi
echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 \
--force-mdc --cipher $ciph -c -o x --yes z
echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 \
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 5b23c9747..aa5a9dae6 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,6 +1,7 @@
2000-10-18 Werner Koch <[email protected]>
- * misc.c (print_cipher_algo_note): Don't print the nore for AES.
+ * misc.c (print_cipher_algo_note): Don't print the note for AES.
+ Changed wording.
2000-10-16 Werner Koch <[email protected]>
diff --git a/g10/misc.c b/g10/misc.c
index 86802c0fa..ca9b45d60 100644
--- a/g10/misc.c
+++ b/g10/misc.c
@@ -234,8 +234,8 @@ print_cipher_algo_note( int algo )
if( !did_note ) {
did_note = 1;
- log_info(_("this cipher algorithm is depreciated; "
- "please use a more standard one!\n"));
+ log_info(_("this cipher algorithm is deprecated; "
+ "please use a more standard one!x\n"));
}
}
}