summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-02-19 15:24:43 +1100
committerDamien Miller <djm@mindrot.org>2002-02-19 15:24:43 +1100
commitb0462114834f6673f5bb767cbdafe48dafa8a1e4 (patch)
tree545f1f08daf3efff16fa9cf782803a998b6bb94b
parent993dd5509408c026f50bc09dc1acd105c84649a8 (diff)
- millert@cvs.openbsd.org 2002/02/16 21:27:53
[auth.h] Part one of userland __P removal. Done with a simple regexp with some minor hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
-rw-r--r--ChangeLog8
-rw-r--r--auth.h8
2 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index cd3193ae..bc7bd0ab 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -24,6 +24,12 @@
[ssh-keygen.c]
default to rsa keyfile path for non key generation operations where
keyfile not specified. fixes core dump in those cases. ok markus@
+ - millert@cvs.openbsd.org 2002/02/16 21:27:53
+ [auth.h]
+ Part one of userland __P removal. Done with a simple regexp with
+ some minor hand editing to make comments line up correctly. Another
+ pass is forthcoming that handles the cases that could not be done
+ automatically.
20020218
- (tim) newer config.guess from ftp://ftp.gnu.org/gnu/config/config.guess
@@ -7621,4 +7627,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1860 2002/02/19 04:22:47 djm Exp $
+$Id: ChangeLog,v 1.1861 2002/02/19 04:24:43 djm Exp $
diff --git a/auth.h b/auth.h
index ef2772d8..6db5b6e5 100644
--- a/auth.h
+++ b/auth.h
@@ -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.26 2001/12/27 19:54:53 markus Exp $
+ * $OpenBSD: auth.h,v 1.27 2002/02/16 21:27:53 millert Exp $
*/
#ifndef AUTH_H
#define AUTH_H
@@ -79,12 +79,12 @@ struct Authctxt {
struct KbdintDevice
{
const char *name;
- void* (*init_ctx) __P((Authctxt*));
+ void* (*init_ctx)(Authctxt*);
int (*query) __P((void *ctx, char **name, char **infotxt,
u_int *numprompts, char ***prompts,
u_int **echo_on));
- int (*respond) __P((void *ctx, u_int numresp, char **responses));
- void (*free_ctx) __P((void *ctx));
+ int (*respond)(void *ctx, u_int numresp, char **responses);
+ void (*free_ctx)(void *ctx);
};
int auth_rhosts(struct passwd *, const char *);