diff options
author | salo <salo> | 2005-12-09 00:45:31 +0000 |
---|---|---|
committer | salo <salo> | 2005-12-09 00:45:31 +0000 |
commit | f963cdd0d9176bd962564c9d3de5274653c24b50 (patch) | |
tree | 9c1d71168fea6d7cf03e89683d20fd4e851fa19b /chat/silc-server | |
parent | df8524cb3904c08b7d4f8e845c94185712183ea9 (diff) | |
download | pkgsrc-f963cdd0d9176bd962564c9d3de5274653c24b50.tar.gz |
Update to version 1.0.1
Changes:
- Fixed crashbug in key exchange, authentication and rekey protocols.
- Fixed channel private key mode remove bug.
- Fixed statistics temp file creation in debug mode.
- Other bugfixes were also made.
Diffstat (limited to 'chat/silc-server')
-rw-r--r-- | chat/silc-server/Makefile | 5 | ||||
-rw-r--r-- | chat/silc-server/distinfo | 9 | ||||
-rw-r--r-- | chat/silc-server/patches/patch-ac | 30 |
3 files changed, 6 insertions, 38 deletions
diff --git a/chat/silc-server/Makefile b/chat/silc-server/Makefile index 6357cdce461..c9b9d99411a 100644 --- a/chat/silc-server/Makefile +++ b/chat/silc-server/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.44 2005/12/05 23:55:03 rillig Exp $ +# $NetBSD: Makefile,v 1.45 2005/12/09 00:45:31 salo Exp $ # -DISTNAME= silc-server-1.0 -PKGREVISION= 1 +DISTNAME= silc-server-1.0.1 CATEGORIES= chat security MASTER_SITES= http://www.silcnet.org/download/server/sources/ \ ftp://ftp.silcnet.org/silc/server/sources/ \ diff --git a/chat/silc-server/distinfo b/chat/silc-server/distinfo index 32200de7228..d9f83412a20 100644 --- a/chat/silc-server/distinfo +++ b/chat/silc-server/distinfo @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.29 2005/09/13 22:02:24 salo Exp $ +$NetBSD: distinfo,v 1.30 2005/12/09 00:45:31 salo Exp $ -SHA1 (silc-server-1.0.tar.bz2) = bcf440c89b3266f47e64a8f175ffba117f071899 -RMD160 (silc-server-1.0.tar.bz2) = 0316e72d48ca8b4d092db8765807d97ab659b317 -Size (silc-server-1.0.tar.bz2) = 969309 bytes +SHA1 (silc-server-1.0.1.tar.bz2) = 11221aae7e309efc4bde188c87562beb0082ed70 +RMD160 (silc-server-1.0.1.tar.bz2) = 653376a78cc3a3c78364374ee7a1676850a68333 +Size (silc-server-1.0.1.tar.bz2) = 918243 bytes SHA1 (patch-aa) = 3b189047000593b36305f23301987982706355dc SHA1 (patch-ab) = 55b3f00076c5b8a443465753ae07b9e812236f18 -SHA1 (patch-ac) = f167cadd94656cac0ad5edba577b2035cfe9b216 diff --git a/chat/silc-server/patches/patch-ac b/chat/silc-server/patches/patch-ac deleted file mode 100644 index a78465ac4c2..00000000000 --- a/chat/silc-server/patches/patch-ac +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-ac,v 1.12 2005/09/13 22:02:24 salo Exp $ - ---- apps/silcd/silcd.c.orig 2005-05-10 15:22:52.000000000 +0200 -+++ apps/silcd/silcd.c 2005-09-13 21:06:01.000000000 +0200 -@@ -261,14 +261,22 @@ - SILC_TASK_CALLBACK(dump_stats) - { - FILE *fdd; -+ int fild; - char filename[256]; - - memset(filename, 0, sizeof(filename)); -- snprintf(filename, sizeof(filename) - 1, "/tmp/silcd.%d.stats", getpid()); -- fdd = fopen(filename, "w+"); -- if (!fdd) -+ snprintf(filename, sizeof(filename) - 1, "/tmp/silcd.%d.stats-XXXXXX", getpid()); -+ fild = mkstemp(filename); -+ if (fild == -1) - return; - -+ fdd = fdopen(fild, "w"); -+ if (fdd == NULL) { -+ close(fild); -+ unlink(filename); -+ return; -+ } -+ - #define STAT_OUTPUT(fmt, stat) fprintf(fdd, fmt "\n", (int)stat); - - fprintf(fdd, "SILC Server %s Statistics\n\n", silcd->server_name); |