aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/svr4/svr4_stream.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-09-23 20:58:59 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-09-23 20:58:59 +0000
commit1d26b5606fb7c7035d9b36f5dfbe0f650ef97557 (patch)
tree14059a95f1772768c75fd103954a60d2f99eb531 /sys/compat/svr4/svr4_stream.c
parent7dec90bcf93d66581c5efc1059f3edaed55ccef3 (diff)
downloadsrc-1d26b5606fb7c7035d9b36f5dfbe0f650ef97557.tar.gz
src-1d26b5606fb7c7035d9b36f5dfbe0f650ef97557.zip
Use correct variable name so that previous commit actually compiles.
Notes
Notes: svn path=/head/; revision=103872
Diffstat (limited to 'sys/compat/svr4/svr4_stream.c')
-rw-r--r--sys/compat/svr4/svr4_stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/svr4/svr4_stream.c b/sys/compat/svr4/svr4_stream.c
index 21ec309c5a50..1a3871737453 100644
--- a/sys/compat/svr4/svr4_stream.c
+++ b/sys/compat/svr4/svr4_stream.c
@@ -2273,8 +2273,8 @@ int svr4_sys_recv(td, uap)
SCARG(&ora, buf) = SCARG(uap, buf);
SCARG(&ora, len) = SCARG(uap, len);
SCARG(&ora, flags) = SCARG(uap, flags);
- SCARG(&osa, from) = NULL;
- SCARG(&osa, fromlen) = 0;
+ SCARG(&ora, from) = NULL;
+ SCARG(&ora, fromlen) = 0;
return recvfrom(td, &ora);
}