- millert@cvs.openbsd.org 2002/02/17 19:42:32
[auth.h] Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)
This commit is contained in:
parent
b046211483
commit
a93c6d87ef
|
@ -30,6 +30,10 @@
|
||||||
some minor hand editing to make comments line up correctly. Another
|
some minor hand editing to make comments line up correctly. Another
|
||||||
pass is forthcoming that handles the cases that could not be done
|
pass is forthcoming that handles the cases that could not be done
|
||||||
automatically.
|
automatically.
|
||||||
|
- millert@cvs.openbsd.org 2002/02/17 19:42:32
|
||||||
|
[auth.h]
|
||||||
|
Manual cleanup of remaining userland __P use (excluding packages
|
||||||
|
maintained outside the tree)
|
||||||
|
|
||||||
20020218
|
20020218
|
||||||
- (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess
|
- (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess
|
||||||
|
@ -7627,4 +7631,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1861 2002/02/19 04:24:43 djm Exp $
|
$Id: ChangeLog,v 1.1862 2002/02/19 04:25:29 djm Exp $
|
||||||
|
|
7
auth.h
7
auth.h
|
@ -21,7 +21,7 @@
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $OpenBSD: auth.h,v 1.27 2002/02/16 21:27:53 millert Exp $
|
* $OpenBSD: auth.h,v 1.28 2002/02/17 19:42:32 millert Exp $
|
||||||
*/
|
*/
|
||||||
#ifndef AUTH_H
|
#ifndef AUTH_H
|
||||||
#define AUTH_H
|
#define AUTH_H
|
||||||
|
@ -80,9 +80,8 @@ struct KbdintDevice
|
||||||
{
|
{
|
||||||
const char *name;
|
const char *name;
|
||||||
void* (*init_ctx)(Authctxt*);
|
void* (*init_ctx)(Authctxt*);
|
||||||
int (*query) __P((void *ctx, char **name, char **infotxt,
|
int (*query)(void *ctx, char **name, char **infotxt,
|
||||||
u_int *numprompts, char ***prompts,
|
u_int *numprompts, char ***prompts, u_int **echo_on);
|
||||||
u_int **echo_on));
|
|
||||||
int (*respond)(void *ctx, u_int numresp, char **responses);
|
int (*respond)(void *ctx, u_int numresp, char **responses);
|
||||||
void (*free_ctx)(void *ctx);
|
void (*free_ctx)(void *ctx);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue