diff options
author | 2014-07-11 16:22:29 +0000 | |
---|---|---|
committer | 2014-07-11 16:22:29 +0000 | |
commit | 823fee8ca4457b2bc90fb7560affc69e56b2f140 (patch) | |
tree | 39c5dcc822384cb531d9945ee532f58e6ebcea6a /lib/libcrypto/ui/ui_lib.c | |
parent | Huge documentation update for libcrypto and libssl, mostly from Matt Caswell, (diff) | |
download | wireguard-openbsd-823fee8ca4457b2bc90fb7560affc69e56b2f140.tar.xz wireguard-openbsd-823fee8ca4457b2bc90fb7560affc69e56b2f140.zip |
adapt addapt spelling to adapt; request from miod
Diffstat (limited to 'lib/libcrypto/ui/ui_lib.c')
-rw-r--r-- | lib/libcrypto/ui/ui_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/ui/ui_lib.c b/lib/libcrypto/ui/ui_lib.c index c2fe62df338..a33484c72b0 100644 --- a/lib/libcrypto/ui/ui_lib.c +++ b/lib/libcrypto/ui/ui_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ui_lib.c,v 1.25 2014/07/11 08:44:49 jsing Exp $ */ +/* $OpenBSD: ui_lib.c,v 1.26 2014/07/11 16:22:29 deraadt Exp $ */ /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL * project 2001. */ @@ -173,7 +173,7 @@ general_allocate_string(UI *ui, const char *prompt, int prompt_freeable, s->_.string_data.result_maxsize = maxsize; s->_.string_data.test_buf = test_buf; ret = sk_UI_STRING_push(ui->strings, s); - /* sk_push() returns 0 on error. Let's addapt that */ + /* sk_push() returns 0 on error. Let's adapt that */ if (ret <= 0) ret--; } else @@ -215,7 +215,7 @@ general_allocate_boolean(UI *ui, const char *prompt, const char *action_desc, s->_.boolean_data.cancel_chars = cancel_chars; ret = sk_UI_STRING_push(ui->strings, s); /* - * sk_push() returns 0 on error. Let's addapt + * sk_push() returns 0 on error. Let's adapt * that */ if (ret <= 0) |