ws_pipe: fix format error for size_t buffer_size
[metze/wireshark/wip.git] / sync_pipe_write.c
index 64dc078dcae22a60721307ddc5efb5c6c09c990c..3a6155513d010463b62c0623c8c03b7c469d2d4e 100644 (file)
@@ -4,35 +4,17 @@
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
- * 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 the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * SPDX-License-Identifier: GPL-2.0+
  */
 
 #include <config.h>
 
 #include <string.h>
 
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-
-#ifdef _WIN32
-#include <io.h>
-#endif
-
 #include <glib.h>
 
+#include <wsutil/file_util.h>
+
 #include "sync_pipe.h"
 
 /****************************************************************************************************************/
@@ -55,7 +37,7 @@ pipe_write_header(int pipe_fd, char indicator, int length)
     header[3] = (length >> 0) & 0xFF;
 
     /* write header */
-    return write(pipe_fd, header, sizeof header);
+    return ws_write(pipe_fd, header, sizeof header);
 }
 
 
@@ -86,7 +68,7 @@ pipe_write_block(int pipe_fd, char indicator, const char *msg)
     /* write value (if we have one) */
     if(len) {
         /*g_warning("write %d indicator: %c value len: %u msg: %s", pipe_fd, indicator, len, msg);*/
-        ret = write(pipe_fd, msg, len);
+        ret = ws_write(pipe_fd, msg, len);
         if(ret == -1) {
             return;
         }