From e1ab3c3470a7f1159d52ed0c1eacf4a5a7b6bc2b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 28 Dec 2010 11:55:47 +0100 Subject: s3: Remove an ancient typedef --- source3/include/proto.h | 2 +- source3/include/smb.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/include') diff --git a/source3/include/proto.h b/source3/include/proto.h index f9bf72f7a3..af2b359531 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2699,7 +2699,7 @@ bool saf_store( const char *domain, const char *servername ); bool saf_join_store( const char *domain, const char *servername ); bool saf_delete( const char *domain ); char *saf_fetch( const char *domain ); -NODE_STATUS_STRUCT *node_status_query(int fd, +struct node_status *node_status_query(int fd, struct nmb_name *name, const struct sockaddr_storage *to_ss, int *num_names, diff --git a/source3/include/smb.h b/source3/include/smb.h index 8d12fb967d..1957504791 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1687,11 +1687,11 @@ struct nmb_name { }; /* A netbios node status array element. */ -typedef struct node_status_ { +struct node_status { nstring name; unsigned char type; unsigned char flags; -} NODE_STATUS_STRUCT; +}; /* The extra info from a NetBIOS node status query */ struct node_status_extra { -- cgit