diff options
author | anray <anray@FreeBSD.org> | 2007-01-29 18:55:59 +0800 |
---|---|---|
committer | anray <anray@FreeBSD.org> | 2007-01-29 18:55:59 +0800 |
commit | 079b6bb429ab7d4454afa2530f5ed37cf875a45c (patch) | |
tree | 04de10927e9a8259f9872c9c7194281ca832daa4 /news | |
parent | 0abde5e176ed4b8b11da8f5901d587e2668a2799 (diff) | |
download | freebsd-ports-graphics-079b6bb429ab7d4454afa2530f5ed37cf875a45c.tar.gz freebsd-ports-graphics-079b6bb429ab7d4454afa2530f5ed37cf875a45c.tar.zst freebsd-ports-graphics-079b6bb429ab7d4454afa2530f5ed37cf875a45c.zip |
Fix tossing, when `packet' in passwd defined.
Diffstat (limited to 'news')
-rw-r--r-- | news/fidogate-ds/Makefile | 2 | ||||
-rw-r--r-- | news/fidogate-ds/files/patch-ftntoss.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/news/fidogate-ds/Makefile b/news/fidogate-ds/Makefile index 518ba7f46da..ccea8dfc1d0 100644 --- a/news/fidogate-ds/Makefile +++ b/news/fidogate-ds/Makefile @@ -6,7 +6,7 @@ PORTNAME= fidogate PORTVERSION= 5.1.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= news mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= rusfidogate diff --git a/news/fidogate-ds/files/patch-ftntoss.c b/news/fidogate-ds/files/patch-ftntoss.c new file mode 100644 index 00000000000..3ce64bd5fe2 --- /dev/null +++ b/news/fidogate-ds/files/patch-ftntoss.c @@ -0,0 +1,11 @@ +--- src/toss/ftntoss.c.orig Mon Jan 29 12:53:14 2007 ++++ src/toss/ftntoss.c Mon Jan 29 12:53:22 2007 +@@ -882,7 +882,7 @@ + #endif /* !SECURITY */ + + if (NULL != (pwd = passwd_lookup("packet", &msg->node_from)) && +- !stricmp(pkt->passwd, pwd->passwd)) ++ stricmp(pkt->passwd, pwd->passwd)) + { + fglog("Insecure echomail packet from %s, area %s (%s pkt password)", + znfp1(&msg->node_from), areaname, |