| 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/games/biniax2/files/ |
Upload File : |
--- biniax.c.orig 2009-05-05 16:49:06.000000000 +0200
+++ biniax.c 2010-01-27 23:57:35.000000000 +0100
@@ -47,6 +47,7 @@
INCLUDES
******************************************************************************/
+#include <errno.h>
#include "game.h"
#include "lev.h"
#include "inc.h"
@@ -89,6 +90,15 @@
int main( int argc, char *argv[] )
{
+ if (chdir(getenv("HOME")) != 0)
+ err(1, "cannot chdir to $HOME");
+
+ if (mkdir(".biniax2", 0755) != 0 && errno != EEXIST)
+ err(1, "cannot mkdir $HOME/.biniax2");
+
+ if (chdir(".biniax2") != 0)
+ err(1, "cannot chdir to $HOME/.biniax2");
+
BNX_BOOL bquit = BNX_FALSE;
BNX_INT16 enterState = cStateMainMenu;
BNX_INT16 nmenu = 0;