summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/auth.c b/auth.c
index f9b767301..e6c094d1f 100644
--- a/auth.c
+++ b/auth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.c,v 1.110 2015/02/25 17:29:38 djm Exp $ */ 1/* $OpenBSD: auth.c,v 1.111 2015/05/01 04:17:51 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2000 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000 Markus Friedl. All rights reserved.
4 * 4 *
@@ -400,8 +400,7 @@ expand_authorized_keys(const char *filename, struct passwd *pw)
400char * 400char *
401authorized_principals_file(struct passwd *pw) 401authorized_principals_file(struct passwd *pw)
402{ 402{
403 if (options.authorized_principals_file == NULL || 403 if (options.authorized_principals_file == NULL)
404 strcasecmp(options.authorized_principals_file, "none") == 0)
405 return NULL; 404 return NULL;
406 return expand_authorized_keys(options.authorized_principals_file, pw); 405 return expand_authorized_keys(options.authorized_principals_file, pw);
407} 406}