diff options
author | djm <djm> | 2002-02-19 04:25:29 +0000 |
---|---|---|
committer | djm <djm> | 2002-02-19 04:25:29 +0000 |
commit | 34b1fd5952c37181453e9b55d3f1ab6574798620 (patch) | |
tree | f3f988860109b00cb06c2428f3ee1ff347f735e3 /auth.h | |
parent | 242b5f053a59b625d444bda7c0f8e1e4ed578246 (diff) | |
download | openssh-34b1fd5952c37181453e9b55d3f1ab6574798620.tar.gz |
- 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)
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * 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 #define AUTH_H @@ -80,9 +80,8 @@ struct KbdintDevice { const char *name; void* (*init_ctx)(Authctxt*); - int (*query) __P((void *ctx, char **name, char **infotxt, - u_int *numprompts, char ***prompts, - u_int **echo_on)); + int (*query)(void *ctx, char **name, char **infotxt, + u_int *numprompts, char ***prompts, u_int **echo_on); int (*respond)(void *ctx, u_int numresp, char **responses); void (*free_ctx)(void *ctx); }; |