Files
sablink-distro/dev-python/Coherence/files/0.5.8-bind_if_detection.patch
T
dontpanic e5de20f7b2 Fixed dev-python/Coherence-0.5.8 ebuild by providing a missing
patch file, and also added an updated dev-python/Coherence-0.6.2
ebuild.


git-svn-id: http://svn.sabayonlinux.org/overlay@2850 d7aec97c-591d-0410-af39-a8856400b30a
2009-03-19 00:30:20 +00:00

12 lines
514 B
Diff

--- coherence/upnp/core/utils.py.old 2008-05-31 12:18:33.000000000 +0200
+++ coherence/upnp/core/utils.py 2008-11-09 14:09:56.000000000 +0100
@@ -116,7 +116,7 @@
tmp = route.readline()
l = tmp.split('\t')
if (len(l) > 2):
- if l[2] != '00000000': #default gateway...
+ if l[1] == '00000000': #default route
route.close()
return get_ip_address(l[0])
except IOerror, msg: