octal
This commit is contained in:
parent
275296311f
commit
5b4d2ed1be
@ -520,6 +520,7 @@ exchange_serve_process_config ()
|
|||||||
else if (0 == strcmp (serve_type, "unix"))
|
else if (0 == strcmp (serve_type, "unix"))
|
||||||
{
|
{
|
||||||
struct sockaddr_un s_un;
|
struct sockaddr_un s_un;
|
||||||
|
char *modestring;
|
||||||
unsigned long long mode;
|
unsigned long long mode;
|
||||||
|
|
||||||
if (GNUNET_OK !=
|
if (GNUNET_OK !=
|
||||||
@ -545,10 +546,10 @@ exchange_serve_process_config ()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (GNUNET_OK !=
|
if (GNUNET_OK !=
|
||||||
GNUNET_CONFIGURATION_get_value_number (cfg,
|
GNUNET_CONFIGURATION_get_value_string (cfg,
|
||||||
"exchange",
|
"exchange",
|
||||||
"unixpath_mode",
|
"unixpath_mode",
|
||||||
&mode))
|
&modestring))
|
||||||
{
|
{
|
||||||
GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
|
GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
|
||||||
"exchange",
|
"exchange",
|
||||||
@ -557,7 +558,18 @@ exchange_serve_process_config ()
|
|||||||
TMH_VALIDATION_done ();
|
TMH_VALIDATION_done ();
|
||||||
return GNUNET_SYSERR;
|
return GNUNET_SYSERR;
|
||||||
}
|
}
|
||||||
unixpath_mode = (mode_t) mode;
|
errno = 0;
|
||||||
|
unixpath_mode = (mode_t) strtoul (modestring, NULL, 8);
|
||||||
|
if (0 != errno)
|
||||||
|
{
|
||||||
|
GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
|
||||||
|
"exchange",
|
||||||
|
"unixpath_mode",
|
||||||
|
"unixpath_mode required");
|
||||||
|
TMH_VALIDATION_done ();
|
||||||
|
return GNUNET_SYSERR;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -803,6 +815,7 @@ main (int argc,
|
|||||||
fprintf (stderr, "chmod failed: %s\n", strerror (errno));
|
fprintf (stderr, "chmod failed: %s\n", strerror (errno));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
GNUNET_log (GNUNET_ERROR_TYPE_INFO, "set socket '%s' to mode %o", unixpath, unixpath_mode);
|
||||||
|
|
||||||
mydaemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG,
|
mydaemon = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG,
|
||||||
0,
|
0,
|
||||||
|
Loading…
Reference in New Issue
Block a user