diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2020-01-15 20:30:33 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2020-01-15 20:30:33 +0000 |
commit | 7718fad1493ba2f47e828aa796aaf7baee253ce9 (patch) | |
tree | c69f719779a42265c76a82d7a154fdbad3fe32da /sbin | |
parent | b030cebf0d81c584e0f34a6804447bceeee5f401 (diff) |
s/deprecated/ignored/ in the warning message if -6 is used; the option
is ignored (the behaviour previously behind -6 is now the default so if
this flag was used, it can happily be removed.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/iked/iked.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/iked/iked.c b/sbin/iked/iked.c index 33c2adf5a4f..ce78f4cbef7 100644 --- a/sbin/iked/iked.c +++ b/sbin/iked/iked.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iked.c,v 1.39 2020/01/14 22:28:29 tobhe Exp $ */ +/* $OpenBSD: iked.c,v 1.40 2020/01/15 20:30:32 sthen Exp $ */ /* * Copyright (c) 2019 Tobias Heider <tobias.heider@stusta.de> @@ -76,7 +76,7 @@ main(int argc, char *argv[]) while ((c = getopt(argc, argv, "6dD:nf:vSTt")) != -1) { switch (c) { case '6': - log_warnx("the -6 option is deprecated and will be " + log_warnx("the -6 option is ignored and will be " "removed in the future."); break; case 'd': |