1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-08 06:48:28 +00:00
freebsd-ports/news/golded+/files/patch-golded3::gehdre.cpp
Max Khon 47c0d59051 New port: golded+
GoldED+ is FTN message editor.
2003-10-20 10:47:25 +00:00

12 lines
487 B
C++

--- ./golded3/gehdre.cpp.orig Mon Oct 20 02:57:23 2003
+++ ./golded3/gehdre.cpp Mon Oct 20 02:58:21 2003
@@ -511,7 +511,7 @@
// Try to match akas with the dest address, but only if the orig address was NOT changed
vector<gaka>::iterator i;
for(i = CFG->aka.begin(); i != CFG->aka.end(); i++) {
- if(memcmp(&msg->orig, i, sizeof(Addr)) == 0)
+ if(memcmp(&msg->orig, &(*i), sizeof(Addr)) == 0)
break; // Found one of our own akas.
}