summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-08-13 21:18:00 +1000
committerDarren Tucker <dtucker@zip.com.au>2004-08-13 21:18:00 +1000
commitc7a6fc41bfdcd73469b153437a8e75e0b1057894 (patch)
tree4ad8c688ec8a08573b3c2efa38af1dcc5df24222 /misc.h
parent03669a363eb8c76f460a75adc11d0eb933e4af49 (diff)
- avsm@cvs.openbsd.org 2004/08/11 21:43:05
[channels.c channels.h clientloop.c misc.c misc.h serverloop.c ssh-agent.c] some signed/unsigned int comparison cleanups; markus@ ok
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc.h b/misc.h
index ffa8d8f27..ec47a611d 100644
--- a/misc.h
+++ b/misc.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: misc.h,v 1.16 2004/06/17 15:10:14 djm Exp $ */ 1/* $OpenBSD: misc.h,v 1.17 2004/08/11 21:43:05 avsm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -29,8 +29,8 @@ struct passwd *pwcopy(struct passwd *);
29typedef struct arglist arglist; 29typedef struct arglist arglist;
30struct arglist { 30struct arglist {
31 char **list; 31 char **list;
32 int num; 32 u_int num;
33 int nalloc; 33 u_int nalloc;
34}; 34};
35void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3))); 35void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
36 36