Displaying 2 results from an estimated 2 matches for "multistat".
Did you mean:
multiseat
2006 Oct 21
1
mysql-5.0.26 stored procedure authorization, take 2
Last time I came up with a problem with concernin MySQL authorization with
stored procedures. Timo helped me get going by with modified
client_flags (MULTISTATEMENT keyword).
Now all it happened again but from
another way. My stored proce for MySQL is causing fillowing error:
"Oct 21 12:39:22 haos dovecot: auth-worker(default): sql(user,192.168.X.X):
Password query fai led: Commands out of sync; you can't run this command
now"
Looks like...
2011 Jun 22
3
sandbox pre-auth privsep child
...0,7 @@ fill_default_server_options(ServerOption
/* Turn privilege separation on by default */
if (use_privsep == -1)
- use_privsep = 1;
+ use_privsep = PRIVSEP_SANDBOX;
#ifndef HAVE_MMAP
if (use_privsep && options->compression == 1) {
@@ -701,6 +701,12 @@ static const struct multistate multistat
{ "no", 0 },
{ NULL, -1 }
};
+static const struct multistate multistate_privsep[] = {
+ { "sandbox", PRIVSEP_SANDBOX },
+ { "yes", PRIVSEP_ON },
+ { "no", PRIVSEP_OFF },
+ { NULL, -1 }
+};
int
process_server_config_line(ServerOpt...