diff options
author | martin <martin@pkgsrc.org> | 2005-09-09 23:13:12 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2005-09-09 23:13:12 +0000 |
commit | 05d19a764dcf5ec143fb0ef59ed150c280228782 (patch) | |
tree | 197f84beebb8753d0b115d2e38095d83f1fde265 /sysutils | |
parent | 444045107ee5e2d06768d94dc6826e0c3c0a69da (diff) | |
download | pkgsrc-05d19a764dcf5ec143fb0ef59ed150c280228782.tar.gz |
Fix uninitialized warnings
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/tits/distinfo | 4 | ||||
-rw-r--r-- | sysutils/tits/patches/patch-ad | 13 | ||||
-rw-r--r-- | sysutils/tits/patches/patch-ae | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/sysutils/tits/distinfo b/sysutils/tits/distinfo index 51aa2f47574..ca9f3965c50 100644 --- a/sysutils/tits/distinfo +++ b/sysutils/tits/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2005/02/24 13:40:58 agc Exp $ +$NetBSD: distinfo,v 1.7 2005/09/09 23:13:12 martin Exp $ SHA1 (tits-1.1.1.tar.gz) = 7a8242a5700296d24d74ed155a79673a6b2255a5 RMD160 (tits-1.1.1.tar.gz) = 5fe3503d630cc9bf2b1c9829071727050765df3d @@ -6,3 +6,5 @@ Size (tits-1.1.1.tar.gz) = 21411 bytes SHA1 (patch-aa) = cb97029249e318d30b859ad4479ae6cb0c0ffcf2 SHA1 (patch-ab) = 028c622b79518cdfe62ee8a3144593e6830e1952 SHA1 (patch-ac) = 9df6cac6d64978182d4ef6631b4a220126e9d930 +SHA1 (patch-ad) = 66dea133c934da864bbc22ff7eb610c34d55a67f +SHA1 (patch-ae) = 439b5b608bb20cf0dde9e03f536f4196420e916e diff --git a/sysutils/tits/patches/patch-ad b/sysutils/tits/patches/patch-ad new file mode 100644 index 00000000000..07ba0e06006 --- /dev/null +++ b/sysutils/tits/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2005/09/09 23:13:12 martin Exp $ + +--- main.c.orig 2002-11-25 12:00:17.000000000 +0100 ++++ main.c 2005-09-10 01:08:07.000000000 +0200 +@@ -57,7 +57,7 @@ int + main(int argc, char **argv) + { + const char *estr; +- const char *conf_file; ++ const char *conf_file = NULL; + + if ((pname = strrchr(argv[0], '/')) == NULL) + pname = argv[0]; diff --git a/sysutils/tits/patches/patch-ae b/sysutils/tits/patches/patch-ae new file mode 100644 index 00000000000..f99f736af24 --- /dev/null +++ b/sysutils/tits/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2005/09/09 23:13:12 martin Exp $ + +--- dispatcher.c.orig 2001-03-14 20:33:10.000000000 +0100 ++++ dispatcher.c 2005-09-10 01:10:33.000000000 +0200 +@@ -240,7 +240,7 @@ dispatcher_mainloop(void) + nfds_t pfds; + int nfds, errcnt = 0; + int timeout; +- time_t delta; ++ time_t delta = 0; + + while (!TAILQ_EMPTY(&contexts)) { + for (pfds = 0, ctx = TAILQ_FIRST(&contexts); ctx != NULL; |