| Server IP : 82.208.35.60 / Your IP : 216.73.216.89 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/net/quagga/files/ |
Upload File : |
--- 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);
}