1
1

Sun Jan 31 21:09:38 1999 Alexander Savelyev <fano@vcom.kiev.ua>

* po/Makefile.in.in: use DESTDIR (makes it possible to move
installation path with "make DESTDIR="...")

Sun Jan 31 20:51:17 1999  Alexander Savelyev <fano@vcom.kiev.ua>

* vfs/mcserv.c (do_auth): mcserv never auth properly on bsdi.
(mc/vfs/mcserv.c do_auth() on bsdi we must use setuid() not
setreuid()).

* vfs/tcputil.c: use correct signal handler (void func(int)) on BSDI


Sun Jan 31 20:41:00 1999  Norbert Warmuth  <nwarmuth@privat.circular.de>

* mcserv.c (do_link): Removed duplicate invokation of link. Thanks
to Grzegorz Makarewicz <mak@mikroplan.com.pl> for spotting this.
Этот коммит содержится в:
Norbert Warmuth 1999-01-31 22:17:14 +00:00
родитель f75a6470ca
Коммит d56f703957
5 изменённых файлов: 24 добавлений и 6 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Sun Jan 31 21:09:38 1999 Alexander Savelyev <fano@vcom.kiev.ua>
* Makefile.in.in: use DESTDIR (makes it possible to move
installation path with "make DESTDIR="...")
1999-01-05 Federico Mena Quintero <federico@nuclecu.unam.mx>
* POTFILES.in: Removed gmc-window.c.

Просмотреть файл

@ -9,8 +9,8 @@ srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
prefix = $(DESTDIR)@prefix@
exec_prefix = $(DESTDIR)@exec_prefix@
datadir = $(prefix)/@DATADIRNAME@
localedir = $(datadir)/locale
gnulocaledir = $(prefix)/share/locale

Просмотреть файл

@ -1,3 +1,16 @@
Sun Jan 31 20:51:17 1999 Alexander Savelyev <fano@vcom.kiev.ua>
* mcserv.c (do_auth): mcserv never auth properly on bsdi.
(mc/vfs/mcserv.c do_auth() on bsdi we must use setuid() not
setreuid()).
* tcputil.c: use correct signal handler (void func(int)) on BSDI
Sun Jan 31 20:41:00 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
* mcserv.c (do_link): Removed duplicate invokation of link. Thanks
to Grzegorz Makarewicz <mak@mikroplan.com.pl> for spotting this.
Sun Jan 31 20:04:13 1999 Norbert Warmuth <nwarmuth@privat.circular.de>
* vfs.c (vfs_strip_suffix_from_filename): Whoever replaces every

Просмотреть файл

@ -581,7 +581,7 @@ void do_link (void)
rpc_get (msock, RPC_STRING, &f1, RPC_STRING, &f2, RPC_END);
status = link (f1, f2);
send_status (link (f1, f2), errno);
send_status (status, errno);
g_free (f1); g_free (f2);
}
@ -912,7 +912,7 @@ do_auth (char *username, char *password)
#endif
#endif
#ifndef BSD
#if !defined(BSD) || defined(__bsdi__)
if (setuid (this->pw_uid))
#else
if (setreuid (this->pw_uid, this->pw_uid))

Просмотреть файл

@ -239,8 +239,8 @@ void rpc_add_get_callback (int sock, void (*cback)(int))
sock_callbacks = new;
}
#if defined(IS_AIX) || defined(linux) || defined(SCO_FLAVOR) || defined(__QNX__) \
|| defined(__FreeBSD__)
#if defined(IS_AIX) || defined(linux) || defined(SCO_FLAVOR) \
|| defined(__QNX__) || defined(__FreeBSD__) || defined(__bsdi__)
static void sig_pipe (int unused)
#else
static void sig_pipe (void)