mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 11:33:15 -04:00
PR: 207589, 207628 Submitted by: Miroslav Lachman <000.fbsd@quip.cz>, Dan Lukes <dan@obluda.cz>, Chris Hutchinsin <portmaster@bsdforge.com> (maintainer)
10 lines
323 B
C
10 lines
323 B
C
--- dns-terror/BoolString.h.orig 2003-05-17 17:58:52 UTC
|
|
+++ dns-terror/BoolString.h
|
|
@@ -56,6 +56,7 @@ public:
|
|
BoolString &operator=(const BoolString &other) {
|
|
str = other.str;
|
|
flag = other.flag;
|
|
+ return *this;
|
|
}
|
|
int operator<(const BoolString &other) const {
|
|
return strcmp(str, other.str) < 0;
|