| Server IP : 82.208.35.60 / Your IP : 216.73.217.116 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/deskutils/tpb/files/ |
Upload File : |
--- src/cfg.c.orig 2005-07-18 14:15:59 UTC
+++ src/cfg.c
@@ -1548,12 +1548,14 @@ void find_nvram(config *cfg) /* {{{ */
_exit(1);
}
if((fdsc=open(cfg->nvram, O_RDONLY|O_NONBLOCK) == -1) && errno == ENOENT) {
+#ifndef __FreeBSD__
/* Try devfs device */
if((cfg->nvram=strdup(DEFAULT_NVRAMDEV_DEVFS)) == NULL) {
fputs(_("Not enough memory"),stderr);
_exit(1);
}
fdsc = open(cfg->nvram, O_RDONLY|O_NONBLOCK);
+#endif
}
if(fdsc != -1) {