From dfa84116fac339982ea1f04924c4ec080df265d0 Mon Sep 17 00:00:00 2001 From: zodiac Date: Wed, 18 Mar 2009 01:12:57 +0000 Subject: [PATCH] Firefox didn't like the IE6 fix. Tweaked it some more. git-svn-id: https://shellinabox.googlecode.com/svn/trunk@79 0da03de8-d603-11dd-86c2-0f8696b7b6f9 --- config.h | 8 ++++---- shellinabox/shell_in_a_box.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config.h b/config.h index 1b35139..3ea32b0 100644 --- a/config.h +++ b/config.h @@ -20,13 +20,13 @@ #define HAVE_MEMORY_H 1 /* Define to 1 if you have the header file. */ -/* #undef HAVE_OPENSSL_BIO_H */ +#define HAVE_OPENSSL_BIO_H 1 /* Define to 1 if you have the header file. */ -/* #undef HAVE_OPENSSL_ERR_H */ +#define HAVE_OPENSSL_ERR_H 1 /* Define to 1 if you have the header file. */ -/* #undef HAVE_OPENSSL_SSL_H */ +#define HAVE_OPENSSL_SSL_H 1 /* Define to 1 if you have the header file. */ #define HAVE_PTHREAD_H 1 @@ -95,7 +95,7 @@ #define STDC_HEADERS 1 /* Most recent revision number in the version control system */ -#define VCS_REVISION "77" +#define VCS_REVISION "78" /* Version number of package */ #define VERSION "2.4" diff --git a/shellinabox/shell_in_a_box.js b/shellinabox/shell_in_a_box.js index f6efce8..ab02e4d 100644 --- a/shellinabox/shell_in_a_box.js +++ b/shellinabox/shell_in_a_box.js @@ -182,7 +182,7 @@ ShellInABox.prototype.sendRequest = function(request) { if (this.session) { request.send(content); } else { - request.send(); + request.send(''); } };