Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/crypto/dist/ssh args is a pointer.



details:   https://anonhg.NetBSD.org/src/rev/8015b8c43808
branches:  netbsd-1-6
changeset: 530723:8015b8c43808
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Sep 18 01:49:02 2003 +0000

description:
args is a pointer.

diffstat:

 crypto/dist/ssh/misc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r fdc363d64949 -r 8015b8c43808 crypto/dist/ssh/misc.c
--- a/crypto/dist/ssh/misc.c    Thu Sep 18 01:47:54 2003 +0000
+++ b/crypto/dist/ssh/misc.c    Thu Sep 18 01:49:02 2003 +0000
@@ -1,5 +1,5 @@
-/*     $NetBSD: misc.c,v 1.9.2.2 2003/09/18 01:47:54 christos Exp $    */
-/*     $NetBSD: misc.c,v 1.9.2.2 2003/09/18 01:47:54 christos Exp $    */
+/*     $NetBSD: misc.c,v 1.9.2.3 2003/09/18 01:49:02 christos Exp $    */
+/*     $NetBSD: misc.c,v 1.9.2.3 2003/09/18 01:49:02 christos Exp $    */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *
@@ -316,7 +316,7 @@
        } else if (args->num+2 >= args->nalloc)
                nalloc = args->nalloc * 2;
        else
-               nalloc = args.nalloc;
+               nalloc = args->nalloc;
 
        args->list = xrealloc(args->list, nalloc * sizeof(char *));
        args->nalloc = nalloc;



Home | Main Index | Thread Index | Old Index