From: ben Date: Sat, 10 May 2003 11:40:18 +0000 (+0000) Subject: Update signature of agent_query() to match the rest of the world. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/12bff6dc1d8d9d0eb9a20570216f87387cac59e9 Update signature of agent_query() to match the rest of the world. git-svn-id: svn://svn.tartarus.org/sgt/putty@3178 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/mac/mac.c b/mac/mac.c index 45b4b211..eb69224d 100644 --- a/mac/mac.c +++ b/mac/mac.c @@ -1,4 +1,4 @@ -/* $Id: mac.c,v 1.57 2003/04/05 14:34:06 ben Exp $ */ +/* $Id: mac.c,v 1.58 2003/05/10 11:40:18 ben Exp $ */ /* * Copyright (c) 1999, 2003 Ben Harris * All rights reserved. @@ -661,11 +661,13 @@ int agent_exists(void) return FALSE; } -void agent_query(void *in, int inlen, void **out, int *outlen) +int agent_query(void *in, int inlen, void **out, int *outlen, + void (*callback)(void *, void *, int), void *callback_ctx) { *out = NULL; *outlen = 0; + return 1; } /* Temporary null routines for testing. */