summaryrefslogtreecommitdiff
path: root/source3/include/ntdomain.h
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2010-07-28 10:28:57 +0200
committerAndreas Schneider <asn@samba.org>2010-07-28 10:39:25 +0200
commitf7a1453957223ead6ca2297dc57ce8c353f7fe5d (patch)
tree487d5f6cbd91311e74ea4d0b1b221274d0465cd4 /source3/include/ntdomain.h
parent97dba0c0d957e17ac89e3c78eb5749621eab2a43 (diff)
downloadsamba-f7a1453957223ead6ca2297dc57ce8c353f7fe5d.tar.gz
samba-f7a1453957223ead6ca2297dc57ce8c353f7fe5d.tar.bz2
samba-f7a1453957223ead6ca2297dc57ce8c353f7fe5d.zip
s3-include: Use struct pipes struct and get rid of the typedef.
Diffstat (limited to 'source3/include/ntdomain.h')
-rw-r--r--source3/include/ntdomain.h6
1 files changed, 3 insertions, 3 deletions
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 */