[191] in bug-owl
2 fixes
daemon@ATHENA.MIT.EDU (Derrick J Brashear)
Sat Jun 21 22:52:52 2003
Date: Sat, 21 Jun 2003 22:49:55 -0400 (EDT)
From: Derrick J Brashear <shadow@dementia.org>
To: bug-owl@mit.edu
Message-ID: <Pine.LNX.4.53.0306212248510.1287@scully.trafford.dementia.org>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
one for the earlier issue. it's trying to show me an error because it
can't find style default, which i'll ignore for now.
--- functions.c 2003/06/21 15:17:28 1.64
+++ functions.c 2003/06/22 02:45:42
@@ -725,6 +725,8 @@
va_list ap;
char buff[2048];
+ if (!owl_global_get_curs_msgwin(&g)) return;
+
va_start(ap, fmt);
werase(owl_global_get_curs_msgwin(&g));
The other is to make owl.h use what configure tests for:
--- owl.h 2003/06/21 17:54:21 1.43
+++ owl.h 2003/06/22 01:08:45
@@ -122,7 +122,7 @@
#define OWL_CMD_ALIAS_SUMMARY_PREFIX "command alias to: "
-#if defined(HAVE_DES_STRING_TO_KEY) && defined(HAVE_DES_KEY_SCHED) &&
defined(HAVE_DES_ECB_ENCRYPT)
+#if defined(HAVE_DES_STRING_TO_KEY) && defined(HAVE_DES_KEY_SCHED) &&
defined(HAVE_DES_ECB_ENCRYPT_PROTO)
#define OWL_ENABLE_ZCRYPT 1
#endif