mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fixed synopsis (missing #includes and consts).
This commit is contained in:
parent
2d2781ff2c
commit
8e868ec864
1 changed files with 7 additions and 6 deletions
|
|
@ -22,7 +22,7 @@
|
|||
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
.\" SUCH DAMAGE.
|
||||
.\"
|
||||
.\" $Id$
|
||||
.\" $Id: skey.3,v 1.5 1997/02/22 15:07:58 peter Exp $
|
||||
.\"
|
||||
.Dd December 22, 1996
|
||||
.Dt SKEY 3
|
||||
|
|
@ -37,19 +37,20 @@
|
|||
.Nm skey_crypt
|
||||
.Nd Library routines for S/Key password control table access
|
||||
.Sh SYNOPSIS
|
||||
.Fd #include <stdio.h>
|
||||
.Fd #include <skey.h>
|
||||
.Ft int
|
||||
.Fn skeylookup "struct skey *mp" "char *name"
|
||||
.Fn skeylookup "struct skey *mp" "const char *name"
|
||||
.Ft int
|
||||
.Fn skeyverify "struct skey *mp" "char *response"
|
||||
.Ft int
|
||||
.Fn skeychallenge "struct skey *mp" "char *name" "char *challenge"
|
||||
.Fn skeychallenge "struct skey *mp" "const char *name" "char *challenge"
|
||||
.Ft int
|
||||
.Fn skeyinfo "struct skey *mp" "char* name" "char *ss"
|
||||
.Fn skeyinfo "struct skey *mp" "const char *name" "char *ss"
|
||||
.Ft int
|
||||
.Fn skeyaccess "char *user" "char *port" "char *host" "char *addr"
|
||||
.Fn skeyaccess "char *user" "const char *port" "const char *host" "const char *addr"
|
||||
.Ft char *
|
||||
.Fn skey_getpass "char *prompt" "struct passwd *pwd" "int pwok"
|
||||
.Fn skey_getpass "const char *prompt" "struct passwd *pwd" "int pwok"
|
||||
.Ft char *
|
||||
.Fn skey_crypt "char *pp" "char *salt" "struct passwd *pwd" "int pwok"
|
||||
.Sh DESCRIPTION
|
||||
|
|
|
|||
Loading…
Reference in a new issue