here's the bugfix: a missing prototype declaration

This commit is contained in:
psyc://loupsycedyglgamf.onion/~lynX 2016-05-22 09:34:21 +02:00
parent baff8768f5
commit 0120646dd2
3 changed files with 9 additions and 2 deletions

View File

@ -679,7 +679,6 @@ case "\$1" in
rm $sandbox/data/$driver.pid && echo "OK"
else
echo -n "Killing psyced brutally ... "
kill -1 \`cat $sandbox/data/$driver.pid\` >/dev/null 2>&1
kill -3 \`cat $sandbox/data/psyced.pid\` && echo "OK"
fi
;;
@ -729,9 +728,15 @@ X
ControlSocket $base/var/tor/.control
DataDirectory $base/var/tor
AutomapHostsOnResolve 1
SocksPort 9050
DNSPort 9053
AutomapHostsOnResolve 1
# If your tor executable does not support this feature,
# .onion domain names will not 'resolve' like normal ones.
TransPort 9040
# See also the iptables call in the init script.
# Both are not fundamentally necesseary, you can remove them.
HiddenServiceDir $base/etc/tor/.onion
X

1
world/drivers/psyclpc Symbolic link
View File

@ -0,0 +1 @@
ldmud

View File

@ -18,6 +18,7 @@ varargs object find_person(string name, vaint lowercazed);
#ifndef hex2int
int hex2int(string hex);
#endif
int is_localhost(string host);
varargs string isotime(mixed ctim, int long);
int legal_host(string ip, int port, string scheme, int udpflag);
#ifdef varargs