remove static decls

This commit is contained in:
Doug MacEachern 2005-03-11 21:23:13 +00:00
parent 6d2f12c6b9
commit 3c91457bce
1 changed files with 5 additions and 5 deletions

View File

@ -104,14 +104,14 @@ get_mib2(solaris_mib2_t *mib2,
int *datalen,
char **errmsg)
{
static struct T_optmgmt_ack *a; /* message ACK pointer */
static struct strbuf c; /* streams control buffer */
struct T_optmgmt_ack *a; /* message ACK pointer */
struct strbuf c; /* streams control buffer */
struct strbuf d; /* streams data buffer */
static struct T_error_ack *e; /* message error pointer */
struct T_error_ack *e; /* message error pointer */
int err; /* error code */
int f; /* flags */
static struct opthdr *o; /* message option pointer */
static struct T_optmgmt_req *r; /* message request pointer */
struct opthdr *o; /* message option pointer */
struct T_optmgmt_req *r; /* message request pointer */
int rc; /* reply code */
*errmsg = mib2->errmsg;