From 6de3aca2c159b5142f0d38c3ad67846c43e71eed Mon Sep 17 00:00:00 2001 From: nbd Date: Sat, 30 Apr 2005 22:52:49 +0000 Subject: revert to older version of 'ser', the new one just doesn't work git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@781 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/ser/patches/120-main.patch | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 package/ser/patches/120-main.patch (limited to 'package/ser/patches/120-main.patch') diff --git a/package/ser/patches/120-main.patch b/package/ser/patches/120-main.patch new file mode 100644 index 000000000..eacd0cc23 --- /dev/null +++ b/package/ser/patches/120-main.patch @@ -0,0 +1,26 @@ +--- ser-0.8.14.orig/main.c 2004-06-28 17:41:21.000000000 +0200 ++++ ser-0.8.14/main.c 2005-01-07 23:24:27.000000000 +0100 +@@ -1447,18 +1447,20 @@ + /* seed the prng */ + /* try to use /dev/random if possible */ + seed=0; ++/* this read call is blocking on OpenWRT, further investigations are necessary + if ((rfd=open("/dev/random", O_RDONLY))!=-1){ + try_again: + if (read(rfd, (void*)&seed, sizeof(seed))==-1){ +- if (errno==EINTR) goto try_again; /* interrupted by signal */ ++ if (errno==EINTR) goto try_again; + LOG(L_WARN, "WARNING: could not read from /dev/random (%d)\n", + errno); + } + DBG("read %u from /dev/random\n", seed); + close(rfd); + }else{ +- LOG(L_WARN, "WARNING: could not open /dev/random (%d)\n", errno); +- } ++*/ ++ LOG(L_WARN, "WARNING: could not read from /dev/random (%d)\n", errno); ++// } + seed+=getpid()+time(0); + DBG("seeding PRNG with %u\n", seed); + srand(seed); -- cgit v1.2.3