From f7a1453957223ead6ca2297dc57ce8c353f7fe5d Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Wed, 28 Jul 2010 10:28:57 +0200 Subject: s3-include: Use struct pipes struct and get rid of the typedef. --- source3/include/ntdomain.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/include/ntdomain.h') diff --git a/source3/include/ntdomain.h b/source3/include/ntdomain.h index ea1c0c8b0b..5801fd3c32 100644 --- a/source3/include/ntdomain.h +++ b/source3/include/ntdomain.h @@ -127,7 +127,7 @@ struct pipe_auth_data { * NamedPipes. */ -typedef struct pipes_struct { +struct pipes_struct { struct pipes_struct *next, *prev; char client_address[INET6_ADDRSTRLEN]; @@ -201,12 +201,12 @@ typedef struct pipes_struct { /* private data for the interface implementation */ void *private_data; -} pipes_struct; +}; struct api_struct { const char *name; uint8 opnum; - bool (*fn) (pipes_struct *); + bool (*fn) (struct pipes_struct *); }; #endif /* _NT_DOMAIN_H */ -- cgit