diff options
author | Lawrence Teo <lteo@cvs.openbsd.org> | 2015-09-11 14:43:58 +0000 |
---|---|---|
committer | Lawrence Teo <lteo@cvs.openbsd.org> | 2015-09-11 14:43:58 +0000 |
commit | 216e57b6bf13f26a51e3b243d991a5bf672e9009 (patch) | |
tree | f4e4b80d1c8d00ba1da7e0f04d9821ea2d2f05e3 | |
parent | 98762058560efc9141f48a85f506fa991223c1f9 (diff) |
"Shutdown" should be "Shut down" in the usage for s_time's -no_shutdown
flag. Pointed out by jmc@'s commit to the openssl(1) man page.
-rw-r--r-- | usr.bin/openssl/s_time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/s_time.c b/usr.bin/openssl/s_time.c index 920b62221c5..c102726b7e2 100644 --- a/usr.bin/openssl/s_time.c +++ b/usr.bin/openssl/s_time.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s_time.c,v 1.11 2015/09/11 02:08:34 lteo Exp $ */ +/* $OpenBSD: s_time.c,v 1.12 2015/09/11 14:43:57 lteo Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -184,7 +184,7 @@ struct option s_time_options[] = { }, { .name = "no_shutdown", - .desc = "Shutdown the connection without notifying the server", + .desc = "Shut down the connection without notifying the server", .type = OPTION_FLAG, .opt.flag = &s_time_config.no_shutdown, }, |