freebsd-ports/comms/aprsd/files/patch-src_aprsString.h
Diane Bruce 343224a06e - Unbreak with clang6
- wrong bind() was being used force network ::bind()
- calm down some other warnings while here
- regen patches

Reported by:		pkg-fallout
2018-01-18 23:34:31 +00:00

12 lines
439 B
C

--- src/aprsString.h.orig 2003-10-01 16:58:27 UTC
+++ src/aprsString.h
@@ -196,7 +196,8 @@ class aprsString: public string (public)
void parseLogon(void);
bool parseCommand(void);
bool parsePortFilter(void);
- void aprsString::getMsgText(string& msg);
+// void aprsString::getMsgText(string& msg);
+ void getMsgText(string& msg);
void print(ostream& os);
string getAX25Source(void);
string getAX25Dest(void);