From: Razvan Deaconescu Date: Sat, 21 May 2011 10:29:53 +0000 (+0300) Subject: raw: Fix: check type for SOCK_DGRAM instead of SOCK_RAW. X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=commitdiff_plain;h=0d5fb320ce5c182aab4289b2c9a8e42ab68a5bae;p=swifty.git raw: Fix: check type for SOCK_DGRAM instead of SOCK_RAW. --- diff --git a/src/raw/swift_raw.c b/src/raw/swift_raw.c index 84cb382..55510a2 100644 --- a/src/raw/swift_raw.c +++ b/src/raw/swift_raw.c @@ -179,7 +179,7 @@ int sw_socket(int __domain, int __type, int __protocol) int s; struct sock_list *list; - if (__domain != PF_INET || __type != SOCK_RAW || __protocol != IPPROTO_SWIFT) { + if (__domain != PF_INET || __type != SOCK_DGRAM || __protocol != IPPROTO_SWIFT) { errno = EINVAL; goto sock_err; }