opnsense-ports/net/quagga/files/patch-lib_command.c
Franco Fichtner b9889d0d07 net/quagga: sync with upstream
Taken from: HardenedBSD
2018-02-16 07:23:42 +01:00

21 lines
683 B
C

--- lib/command.c.orig 2018-02-04 17:34:34 UTC
+++ lib/command.c
@@ -3127,15 +3127,15 @@ DEFUN (config_write_file,
if ((dupfd = dup (file_vty->wfd)) < 0)
{
- vty_out (vty, "Couldn't dup fd (for fdatasync) for %s, %s (%d).%s",
+ vty_out (vty, "Couldn't dup fd (for fsync) for %s, %s (%d).%s",
config_file, safe_strerror(errno), errno, VTY_NEWLINE);
}
vty_close (file_vty);
- if (fdatasync (dupfd) < 0)
+ if (fsync (dupfd) < 0)
{
- vty_out (vty, "Couldn't fdatasync %s, %s (%d)!%s",
+ vty_out (vty, "Couldn't fsync %s, %s (%d)!%s",
config_file, safe_strerror(errno), errno, VTY_NEWLINE);
}