diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2005-07-14 04:00:44 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2005-07-14 04:00:44 +0000 |
commit | b3ea5d2886af1bbe66b91cb034002a2286307bd7 (patch) | |
tree | d96a6db8e87d118a7d68cfa7d8f1d5c2a3b150d5 | |
parent | 162470a4e9434154f4574ab37f2b81dcb1ae00fb (diff) |
use __sentinel__ attribute; ok deraadt@ djm@ markus@
-rw-r--r-- | usr.bin/ssh/misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/misc.h b/usr.bin/ssh/misc.h index 92848b28e1c..2d630feb5f8 100644 --- a/usr.bin/ssh/misc.h +++ b/usr.bin/ssh/misc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.24 2005/07/04 00:58:43 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.25 2005/07/14 04:00:43 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -25,7 +25,7 @@ char *cleanhostname(char *); char *colon(char *); long convtime(const char *); char *tilde_expand_filename(const char *, uid_t); -char *percent_expand(const char *, ...) __attribute__((sentinel)); +char *percent_expand(const char *, ...) __attribute__((__sentinel__)); char *tohex(const u_char *, u_int); struct passwd *pwcopy(struct passwd *); |