utimens (fdutimens): ignore a negative FD, per contract
[gnulib.git] / lib / sendto.c
index 888b0f6..3acf45e 100644 (file)
@@ -1,6 +1,6 @@
 /* sendto.c --- wrappers for Windows sendto function
 
-   Copyright (C) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -30,7 +30,7 @@
 
 int
 rpl_sendto (int fd, const void *buf, int len, int flags,
-           struct sockaddr *to, int tolen)
+            struct sockaddr *to, int tolen)
 {
   SOCKET sock = FD_TO_SOCKET (fd);
   int r = sendto (sock, buf, len, flags, to, tolen);