mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
47c0d59051
GoldED+ is FTN message editor.
12 lines
487 B
C++
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.
|
|
}
|
|
|