summaryrefslogtreecommitdiff
path: root/auth2-none.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2007-09-17 11:57:38 +1000
committerDamien Miller <djm@mindrot.org>2007-09-17 11:57:38 +1000
commit4890e539774ab8b57aa0ee733a5b07bdf9561af6 (patch)
treed2f3621c59e1bf6ae1513a74eb54cbdff0444fb3 /auth2-none.c
parent6f40204c442c92b180edc871e8946bade9f6b56f (diff)
- djm@cvs.openbsd.org 2007/08/23 03:22:16
[auth2-none.c sshd_config sshd_config.5] Support "Banner=none" to disable displaying of the pre-login banner; ok dtucker@ deraadt@
Diffstat (limited to 'auth2-none.c')
-rw-r--r--auth2-none.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/auth2-none.c b/auth2-none.c
index 952b44824..28e593e6c 100644
--- a/auth2-none.c
+++ b/auth2-none.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth2-none.c,v 1.13 2006/08/05 07:52:52 dtucker Exp $ */ 1/* $OpenBSD: auth2-none.c,v 1.14 2007/08/23 03:22:16 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * 4 *
@@ -32,6 +32,7 @@
32#include <fcntl.h> 32#include <fcntl.h>
33#include <stdarg.h> 33#include <stdarg.h>
34#include <unistd.h> 34#include <unistd.h>
35#include <string.h>
35 36
36#include "xmalloc.h" 37#include "xmalloc.h"
37#include "key.h" 38#include "key.h"
@@ -106,7 +107,9 @@ userauth_banner(void)
106{ 107{
107 char *banner = NULL; 108 char *banner = NULL;
108 109
109 if (options.banner == NULL || (datafellows & SSH_BUG_BANNER)) 110 if (options.banner == NULL ||
111 strcasecmp(options.banner, "none") == 0 ||
112 (datafellows & SSH_BUG_BANNER) != 0)
110 return; 113 return;
111 114
112 if ((banner = PRIVSEP(auth2_read_banner())) == NULL) 115 if ((banner = PRIVSEP(auth2_read_banner())) == NULL)