diff options
author | jhb <jhb@FreeBSD.org> | 2009-11-03 18:40:42 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2009-11-03 18:40:42 +0000 |
commit | b4a2916c56a47abd27492863f5ec8b94caaa6530 (patch) | |
tree | d2461bc00e98497de6317bb6aa93db32bdffd665 /secure | |
parent | 4d317ded24c674d9ce64ff411ba292b955353b75 (diff) | |
download | FreeBSD-src-b4a2916c56a47abd27492863f5ec8b94caaa6530.zip FreeBSD-src-b4a2916c56a47abd27492863f5ec8b94caaa6530.tar.gz |
Fix a couple of comment typos.
MFC after: 1 week
Diffstat (limited to 'secure')
-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 22df57a..cbab5d7 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 */ |