From a5412829f80764147002e0ed60f74bc1e739335f Mon Sep 17 00:00:00 2001
From: rswindell <>
Date: Tue, 9 Sep 2003 10:04:09 +0000
Subject: [PATCH] Got rid of the anonymous union, not supported by older gcc.

---
 src/smblib/smbdefs.h | 10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/smblib/smbdefs.h b/src/smblib/smbdefs.h
index 717d880398..73d8928be4 100644
--- a/src/smblib/smbdefs.h
+++ b/src/smblib/smbdefs.h
@@ -551,14 +551,8 @@ typedef struct {				// Message
 				*ftn_flags,		// FTN FLAGS
 				*ftn_msgid,		// FTN MSGID
 				*ftn_reply;		// FTN REPLY
-	union {
-		char*	summary;		// Summary 
-		char*	description;	// (or file description)
-	};
-	union {
-		char*	subj;			// Subject 
-		char*	name;			// (or filename)
-	};
+	char*		summary;		// Summary 
+	char*		subj;			// Subject 
 	ushort		to_agent,		// Type of agent message is to
 				from_agent, 	// Type of agent message is from
 				replyto_agent;	// Type of agent replies should be sent to
-- 
GitLab