]> andersk Git - openssh.git/commitdiff
- millert@cvs.openbsd.org 2002/02/16 21:27:53
authordjm <djm>
Tue, 19 Feb 2002 04:24:43 +0000 (04:24 +0000)
committerdjm <djm>
Tue, 19 Feb 2002 04:24:43 +0000 (04:24 +0000)
     [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.

ChangeLog
auth.h

index 9615cfb6c053b114f5eefbd122bf5ace885f9f04..7ebe0a2753e1f567c751b3fcd093d52bb2604522 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      [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
diff --git a/auth.h b/auth.h
index ef2772d89cefb3d702c033021ad09b5a13a65f49..6db5b6e54e153d3e004c37e5e7f30e17e75c0e39 100644 (file)
--- 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 *);
This page took 0.053357 seconds and 5 git commands to generate.