diff options
author | ton <none@none> | 2008-04-29 10:11:48 -0700 |
---|---|---|
committer | ton <none@none> | 2008-04-29 10:11:48 -0700 |
commit | 909c1a3310e6a348a85950c7179fefda50d0e37d (patch) | |
tree | 8231d62b6e43226ec4552a252fbfba61a050c312 /usr/src/lib/libtsnet/common/libtsnet.h | |
parent | 8ff862131a01e2c8a149a23478c4ac4ab8f35d11 (diff) | |
download | illumos-joyent-909c1a3310e6a348a85950c7179fefda50d0e37d.tar.gz |
6463322 tnctl -H or -T doesn't return proper exit code
Diffstat (limited to 'usr/src/lib/libtsnet/common/libtsnet.h')
-rw-r--r-- | usr/src/lib/libtsnet/common/libtsnet.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/lib/libtsnet/common/libtsnet.h b/usr/src/lib/libtsnet/common/libtsnet.h index c1f9b695bd..1ab8f8448c 100644 --- a/usr/src/lib/libtsnet/common/libtsnet.h +++ b/usr/src/lib/libtsnet/common/libtsnet.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. * * All symbols and functions in this header file and library are private to Sun @@ -70,7 +70,7 @@ extern "C" { /* Template entry parsing */ extern tsol_tpent_t *tsol_gettpbyname(const char *); extern tsol_tpent_t *tsol_gettpent(void); -extern tsol_tpent_t *tsol_fgettpent(FILE *); +extern tsol_tpent_t *tsol_fgettpent(FILE *, boolean_t *); extern void tsol_freetpent(tsol_tpent_t *); extern void tsol_settpent(int); extern void tsol_endtpent(void); @@ -80,7 +80,7 @@ extern tsol_tpent_t *tpstr_to_ent(tsol_tpstr_t *, int *, char **); /* Remote host entry parsing */ extern tsol_rhent_t *tsol_getrhbyaddr(const void *, size_t, int); extern tsol_rhent_t *tsol_getrhent(void); -extern tsol_rhent_t *tsol_fgetrhent(FILE *); +extern tsol_rhent_t *tsol_fgetrhent(FILE *, boolean_t *); extern void tsol_freerhent(tsol_rhent_t *); extern void tsol_setrhent(int); extern void tsol_endrhent(void); |