net: put_cmsg_compat + SO_TIMESTAMP[NS]: use same name for value as caller

In __sock_recv_timestamp() the additional SCM_TIMESTAMP[NS] is used. This
has the same value as SO_TIMESTAMP[NS], so this is a purely cosmetic change.

Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Patrick Ohly and committed by David S. Miller d35aac10 8f65b535

+2 -2
+2 -2
net/compat.c
··· 226 226 return 0; /* XXX: return error? check spec. */ 227 227 } 228 228 229 - if (level == SOL_SOCKET && type == SO_TIMESTAMP) { 229 + if (level == SOL_SOCKET && type == SCM_TIMESTAMP) { 230 230 struct timeval *tv = (struct timeval *)data; 231 231 ctv.tv_sec = tv->tv_sec; 232 232 ctv.tv_usec = tv->tv_usec; 233 233 data = &ctv; 234 234 len = sizeof(ctv); 235 235 } 236 - if (level == SOL_SOCKET && type == SO_TIMESTAMPNS) { 236 + if (level == SOL_SOCKET && type == SCM_TIMESTAMPNS) { 237 237 struct timespec *ts = (struct timespec *)data; 238 238 cts.tv_sec = ts->tv_sec; 239 239 cts.tv_nsec = ts->tv_nsec;