diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2003-11-26 00:05:28 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2003-11-26 00:05:28 +0000 |
commit | c1dc4a818ee94252339a1a5f42a3417c2f2c5eb2 (patch) | |
tree | 3e292c7e21c500cb5c05bb7806a11a0ef69090bb /usr.bin | |
parent | 6c274e746cefd1b4b028ef61235a2d296aebff2e (diff) |
multi-line literals are not ANSI C. And gcc3 complains about them.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/skeyinit/skeyinit.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/usr.bin/skeyinit/skeyinit.c b/usr.bin/skeyinit/skeyinit.c index 1d9c93ec6d5..a72d24ec983 100644 --- a/usr.bin/skeyinit/skeyinit.c +++ b/usr.bin/skeyinit/skeyinit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: skeyinit.c,v 1.44 2003/05/07 20:39:29 deraadt Exp $ */ +/* $OpenBSD: skeyinit.c,v 1.45 2003/11/26 00:05:27 espie Exp $ */ /* OpenBSD S/Key (skeyinit.c) * @@ -181,13 +181,13 @@ main(int argc, char **argv) case 1: if (!defaultsetup) { fprintf(stderr, -"You must authenticate yourself before using S/Key for the first time. In -secure mode this is normally done via an existing S/Key key. However, since -you do not have an entry in the S/Key database you will have to specify an -alternate authentication type via the `-a' flag, e.g. - \"skeyinit -s -a krb5\" or \"skeyinit -s -a passwd\"\n -Note that entering a plaintext password over a non-secure link defeats the -purpose of using S/Key in the fist place.\n"); +"You must authenticate yourself before using S/Key for the first time. In\n" +"secure mode this is normally done via an existing S/Key key. However, since\n" +"you do not have an entry in the S/Key database you will have to specify an\n" +"alternate authentication type via the `-a' flag, e.g.\n" +" \"skeyinit -s -a krb5\" or \"skeyinit -s -a passwd\"\n\n" +"Note that entering a plaintext password over a non-secure link defeats the\n" +"purpose of using S/Key in the fist place.\n"); exit(1); } break; |