mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- djm@cvs.openbsd.org 2003/01/13 11:04:04
[sftp-int.c] make cmds[] array static to avoid conflict with BSDI libc.
This commit is contained in:
parent
71a5141534
commit
dc70857773
@ -10,6 +10,9 @@
|
|||||||
- markus@cvs.openbsd.org 2003/01/12 16:57:02
|
- markus@cvs.openbsd.org 2003/01/12 16:57:02
|
||||||
[progressmeter.c]
|
[progressmeter.c]
|
||||||
allow WARNINGS=yes; ok djm@
|
allow WARNINGS=yes; ok djm@
|
||||||
|
- djm@cvs.openbsd.org 2003/01/13 11:04:04
|
||||||
|
[sftp-int.c]
|
||||||
|
make cmds[] array static to avoid conflict with BSDI libc.
|
||||||
|
|
||||||
20030113
|
20030113
|
||||||
- (djm) Rework openbsd-compat/setproctitle.c a bit: move emulation type
|
- (djm) Rework openbsd-compat/setproctitle.c a bit: move emulation type
|
||||||
@ -1013,4 +1016,4 @@
|
|||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2569 2003/01/14 11:23:23 djm Exp $
|
$Id: ChangeLog,v 1.2570 2003/01/14 11:24:05 djm Exp $
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
/* XXX: recursive operations */
|
/* XXX: recursive operations */
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: sftp-int.c,v 1.53 2003/01/10 23:23:24 fgsch Exp $");
|
RCSID("$OpenBSD: sftp-int.c,v 1.54 2003/01/13 11:04:04 djm Exp $");
|
||||||
|
|
||||||
#include "buffer.h"
|
#include "buffer.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
@ -83,7 +83,7 @@ struct CMD {
|
|||||||
const int n;
|
const int n;
|
||||||
};
|
};
|
||||||
|
|
||||||
const struct CMD cmds[] = {
|
static const struct CMD cmds[] = {
|
||||||
{ "bye", I_QUIT },
|
{ "bye", I_QUIT },
|
||||||
{ "cd", I_CHDIR },
|
{ "cd", I_CHDIR },
|
||||||
{ "chdir", I_CHDIR },
|
{ "chdir", I_CHDIR },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user