summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-01-14 22:24:05 +1100
committerDamien Miller <djm@mindrot.org>2003-01-14 22:24:05 +1100
commitdc70857773267f4832ac159c2f98db125f25f419 (patch)
tree77412c0913021a6edbaacb53e446fa36331779e3
parent71a51415348921728b5b41ac45003858436634c3 (diff)
- djm@cvs.openbsd.org 2003/01/13 11:04:04
[sftp-int.c] make cmds[] array static to avoid conflict with BSDI libc.
-rw-r--r--ChangeLog5
-rw-r--r--sftp-int.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 46333ce1..d0a3754f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@
- markus@cvs.openbsd.org 2003/01/12 16:57:02
[progressmeter.c]
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
- (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;
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 $
diff --git a/sftp-int.c b/sftp-int.c
index 111d1903..3438fdeb 100644
--- a/sftp-int.c
+++ b/sftp-int.c
@@ -25,7 +25,7 @@
/* XXX: recursive operations */
#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 "xmalloc.h"
@@ -83,7 +83,7 @@ struct CMD {
const int n;
};
-const struct CMD cmds[] = {
+static const struct CMD cmds[] = {
{ "bye", I_QUIT },
{ "cd", I_CHDIR },
{ "chdir", I_CHDIR },