aboutsummaryrefslogtreecommitdiffstats
path: root/main/ortp/ortp-0.16.1-retval.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2012-02-12 11:43:54 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2012-02-12 11:44:22 +0000
commit1fe29dc93d8a893c1f5ca0a29df26c117cc0dc2e (patch)
tree832a57c7ab6e7b134e45c8653a8b0939303b3b08 /main/ortp/ortp-0.16.1-retval.patch
parent3daae17ded9bb9808c30220ff6ea97a89494b9a0 (diff)
downloadaports-1fe29dc93d8a893c1f5ca0a29df26c117cc0dc2e.tar.bz2
aports-1fe29dc93d8a893c1f5ca0a29df26c117cc0dc2e.tar.xz
main/ortp: upgrade to 0.18.0
Diffstat (limited to 'main/ortp/ortp-0.16.1-retval.patch')
-rw-r--r--main/ortp/ortp-0.16.1-retval.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/main/ortp/ortp-0.16.1-retval.patch b/main/ortp/ortp-0.16.1-retval.patch
deleted file mode 100644
index 679f8d7d49..0000000000
--- a/main/ortp/ortp-0.16.1-retval.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff -up ortp-0.16.1/src/stun.c.retval ortp-0.16.1/src/stun.c
---- ortp-0.16.1/src/stun.c.retval 2010-09-04 10:14:53.000000000 +0200
-+++ ortp-0.16.1/src/stun.c 2010-09-04 10:15:10.000000000 +0200
-@@ -1191,6 +1191,7 @@ stunRand(void)
- int maxFd=0;
- struct timeval tv;
- int e;
-+ int res;
-
- int fd=open("/dev/random",O_RDONLY);
-
-@@ -1213,7 +1214,7 @@ stunRand(void)
- closesocket(fd);
- return random();
- }
-- read(fd,&tick,sizeof(tick));
-+ res = read(fd,&tick,sizeof(tick));
- closesocket(fd);
- }
- #else