diff options
author | John Baldwin <jhb@FreeBSD.org> | 2009-11-03 18:40:42 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2009-11-03 18:40:42 +0000 |
commit | 9144dd07ad6be6faa96d0c59a97df15d151beef7 (patch) | |
tree | d2461bc00e98497de6317bb6aa93db32bdffd665 | |
parent | 86684848b6097c727e71954bd98b5350baf5d0b6 (diff) |
Notes
-rw-r--r-- | secure/usr.bin/bdes/bdes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/secure/usr.bin/bdes/bdes.c b/secure/usr.bin/bdes/bdes.c index 22df57af7c7f3..cbab5d7656560 100644 --- a/secure/usr.bin/bdes/bdes.c +++ b/secure/usr.bin/bdes/bdes.c @@ -170,11 +170,11 @@ main(int argc, char *argv[]) int i; /* counter in a for loop */ char *p; /* used to obtain the key */ DES_cblock msgbuf; /* I/O buffer */ - int kflag; /* command-line encryptiooon key */ + int kflag; /* command-line encryption key */ setproctitle("-"); /* Hide command-line arguments */ - /* initialize the initialization vctor */ + /* initialize the initialization vector */ MEMZERO(ivec, 8); /* process the argument list */ |