summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/libc/rcmd.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/libc/rcmd.cc')
-rw-r--r--winsup/cygwin/libc/rcmd.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/libc/rcmd.cc b/winsup/cygwin/libc/rcmd.cc
index a09157797..8012790ec 100644
--- a/winsup/cygwin/libc/rcmd.cc
+++ b/winsup/cygwin/libc/rcmd.cc
@@ -430,7 +430,7 @@ iruserok_sa(const void *ra, int rlen, int superuser, const char *ruser,
struct sockaddr_storage ss;
/* avoid alignment issue */
- if (rlen > (int) sizeof(ss))
+ if (rlen > (int) sizeof(ss))
return(-1);
memcpy(&ss, ra, rlen);
raddr = (struct sockaddr *)&ss;