In article <[EMAIL PROTECTED]>,
Alexander Leidinger  <[EMAIL PROTECTED]> wrote:
> 
> Index: authfd.c
> ===================================================================
> RCS file: /big/FreeBSD-CVS/src/crypto/openssh/authfd.c,v
> retrieving revision 1.6
> diff -u -r1.6 authfd.c
> --- authfd.c  2000/09/10 09:35:37     1.6
> +++ authfd.c  2000/09/16 15:27:25
> @@ -178,7 +178,7 @@
>       if (sock < 0)
>               return NULL;
>  
> -     auth = xmalloc(sizeof(*auth));
> +     auth = xmalloc(sizeof(AuthenticationConnection));
>       auth->fd = sock;
>       buffer_init(&auth->identities);
>       auth->howmany = 0;

What is the point of that change?  Functionally it makes no difference
at all, since "*auth" is an AuthenticationConnection.  It makes the
code harder to maintain in case the type of "auth" is changed in the
future.

John
-- 
  John Polstra                                               [EMAIL PROTECTED]
  John D. Polstra & Co., Inc.                        Seattle, Washington USA
  "Disappointment is a good sign of basic intelligence."  -- Chögyam Trungpa



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to