summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-03-14 03:22:29 +0000
committerTim Potter <tpot@samba.org>2000-03-14 03:22:29 +0000
commit7575231df0474a344371c626d73e02c69c963a85 (patch)
treed58924b465863040284f530d248893445dc6066b
parentb740d8299ead78730cf5e0a0a6c5ecd25dd25e1a (diff)
downloadsamba-7575231df0474a344371c626d73e02c69c963a85.tar.gz
Another #ifndef #define #endif bug.
-rw-r--r--source/include/rpc_netsec.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/include/rpc_netsec.h b/source/include/rpc_netsec.h
index 62158a66d14..702ddb756a5 100644
--- a/source/include/rpc_netsec.h
+++ b/source/include/rpc_netsec.h
@@ -21,7 +21,7 @@
*/
#ifndef _RPC_NETSEC_H /* RPC_NETSEC_H */
-#define RPC_NETSEC_H
+#define _RPC_NETSEC_H
#include "rpc_misc.h" /* this only pulls in STRHDR */
@@ -32,7 +32,6 @@ typedef struct rpc_auth_netsec_neg_info
{
fstring domain; /* calling workstations's domain */
fstring myname; /* calling workstation's name */
-
} RPC_AUTH_NETSEC_NEG;
@@ -40,7 +39,6 @@ typedef struct rpc_auth_netsec_neg_info
typedef struct rpc_auth_netsec_resp_info
{
uint32 flags; /* 0x0500 0000 */
-
} RPC_AUTH_NETSEC_RESP;
#define NETSEC_SIGNATURE \
@@ -54,8 +52,6 @@ typedef struct rpc_auth_netsec_chk_info
uint8 data1[8];
uint8 data3[8]; /* verifier, seq num */
uint8 data8[8]; /* random 8-byte nonce */
-
} RPC_AUTH_NETSEC_CHK;
#endif /* RPC_NETSEC_H */
-