patch-2.1.4 linux/net/ipv4/udp.c
Next file: linux/net/ipx/af_ipx.c
Previous file: linux/net/ipv4/tcp.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
Sun Oct 13 21:11:27 1996
- Orig file:
v2.1.3/linux/net/ipv4/udp.c
- Orig date:
Sat Oct 5 16:58:37 1996
diff -u --recursive --new-file v2.1.3/linux/net/ipv4/udp.c linux/net/ipv4/udp.c
@@ -286,7 +286,7 @@
src = ufh->from;
dst = to+sizeof(struct udphdr);
}
- memcpy_fromfs(dst,src,len);
+ copy_from_user(dst,src,len);
if (offset == 0)
memcpy(to, ufh, sizeof(struct udphdr));
}
@@ -487,7 +487,7 @@
sizeof(unsigned long));
if(err)
return(err);
- put_fs_long(amount,(unsigned long *)arg);
+ put_user(amount, (int *)arg);
return(0);
}
@@ -511,7 +511,7 @@
sizeof(unsigned long));
if(err)
return(err);
- put_fs_long(amount,(unsigned long *)arg);
+ put_user(amount, (int *)arg);
return(0);
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov