summaryrefslogtreecommitdiff
path: root/auth.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2017-08-18 05:36:45 +0000
committerDamien Miller <djm@mindrot.org>2017-08-23 19:47:06 +1000
commitde4ae07f12dabf8815ecede54235fce5d22e3f63 (patch)
treee62b3e975ed519f37c7cda4b5229bcffca73023f /auth.h
parent643c2ad82910691b2240551ea8b14472f60b5078 (diff)
upstream commit
Move several subprocess-related functions from various locations to misc.c. Extend subprocess() to offer a little more control over stdio disposition. feedback & ok dtucker@ Upstream-ID: 3573dd7109d13ef9bd3bed93a3deb170fbfce049
Diffstat (limited to 'auth.h')
-rw-r--r--auth.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/auth.h b/auth.h
index cbbc9623f..29835ae92 100644
--- a/auth.h
+++ b/auth.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: auth.h,v 1.92 2017/06/24 06:34:38 djm Exp $ */ 1/* $OpenBSD: auth.h,v 1.93 2017/08/18 05:36:45 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -146,10 +146,6 @@ void auth2_record_info(Authctxt *authctxt, const char *, ...)
146 __attribute__((__nonnull__ (2))); 146 __attribute__((__nonnull__ (2)));
147void auth2_update_session_info(Authctxt *, const char *, const char *); 147void auth2_update_session_info(Authctxt *, const char *, const char *);
148 148
149struct stat;
150int auth_secure_path(const char *, struct stat *, const char *, uid_t,
151 char *, size_t);
152
153#ifdef KRB5 149#ifdef KRB5
154int auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client, krb5_data *); 150int auth_krb5(Authctxt *authctxt, krb5_data *auth, char **client, krb5_data *);
155int auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt); 151int auth_krb5_tgt(Authctxt *authctxt, krb5_data *tgt);