Sender: hurtta@attruh.keh.iki.fi From: "Kari E. Hurtta" Subject: Patch: Elm 2.4ME+ PL117a (25) -> Elm 2.4ME+ PL117b (25) Newsgroups: alt.sources,comp.mail.elm Reply-To: "Kari E. Hurtta" Message-ID: References: In-Reply-To: Lines: 616 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 10 Jul 2004 11:53:17 GMT NNTP-Posting-Host: 193.208.81.208 X-Complaints-To: abuse@inet.fi X-Trace: read3.inet.fi 1089460397 193.208.81.208 (Sat, 10 Jul 2004 14:53:17 EEST) NNTP-Posting-Date: Sat, 10 Jul 2004 14:53:17 EEST Organization: Sonera corp Internet services Xref: newsread1.funet.fi alt.sources:925 comp.mail.elm:1982 X-Cache: nntpcache 3.0.1 (see http://www.nntpcache.org/) Archive-name: elm2.4ME+/PL117b Is available on ozone.FMI.FI via anonymous ftp directory KEH/ file elm-2.4ME+PL117b.patch.gz for a moment (1). Is available with via WWW (1). Is available with via WWW. 1) NOTE: It is currently unknown what will be done for ftp.ozone.fmi.fi and www.ozone.fmi.fi. Also ozone.fmi.fi will retire. For apply patch use command patch -p1 < {path...}/elm-2.4ME+PL117b.patch on top level directory of Elm 2.4ME+ distribution (ie. on directory where Configure is.) SUMMARY: This patch fixes problem where Ctrl-C is ignored only if Elm ME+ is compiled with -DDEBUG define. Notice: ME+ series is not official Elm. This patch is agaist Elm 2.4ME+ PL117a (25) -------------------------------- Index: elm2.4.ME+.117b-cvs/hdrs/patchlevel.h Prereq: 1120000000 *** elm2.4.ME+.117a/hdrs/patchlevel.h 2004-07-10 11:16:33.000000000 +0300 --- elm2.4.ME+.117b-cvs/hdrs/patchlevel.h 2004-07-10 11:08:20.000000000 +0300 *************** *** 1,8 **** ! #define PATCHLEVEL "117a (25)" /* Used by Configure: SHAREDTAG: .1.0.117 */ ! #define LAST_REPORT_TIME 1120000000 #define BUG_REPORT_ADDR "Kari Hurtta " #define VERS_DATE "Jul, 2004" /* for elm -v option */ #define WHAT_STRING \ --- 1,8 ---- ! #define PATCHLEVEL "117b (25)" /* Used by Configure: SHAREDTAG: .1.0.117 */ ! #define LAST_REPORT_TIME 1120900000 #define BUG_REPORT_ADDR "Kari Hurtta " #define VERS_DATE "Jul, 2004" /* for elm -v option */ #define WHAT_STRING \ Index: elm2.4.ME+.117b-cvs/README.ME+ *** elm2.4.ME+.117a/README.ME+ 2004-07-10 11:16:33.000000000 +0300 --- elm2.4.ME+.117b-cvs/README.ME+ 2004-07-10 11:08:20.000000000 +0300 *************** *** 1,4 **** ! $Header: /data/cvsroot/mail/elmme+/README.ME+,v 1.779 2004/07/04 05:53:02 hurtta Exp $ Version Elm2.4ME+ PL0 (25) is based on version Elm2.4 PL24 ME8b+. Version Elm2.4 PL24 ME8b+ is based on version Elm2.4 PL24 ME8b. --- 1,4 ---- ! $Header: /data/cvsroot/mail/elmme+/README.ME+,v 1.780 2004/07/10 08:08:20 hurtta Exp $ Version Elm2.4ME+ PL0 (25) is based on version Elm2.4 PL24 ME8b+. Version Elm2.4 PL24 ME8b+ is based on version Elm2.4 PL24 ME8b. *************** *** 13,18 **** --- 13,28 ---- Version Elm2.4 PL24 ME8b is based on version Elm2.4 PL24. Version Elm2.4ME+ PLx (25) includes patch of version Elm2.4 PL25. + + Changes of Elm2.4ME+ PL117b (25) compared with Elm2.4ME+ PL117a (25) + -------------------------------------------------------------------- + + [ This patch is branch from the main line. ] + + - Interrupt signal (Ctrl-C) was ignored only, + if Elm ME+ was compiled with -DDEBUG option. + Problem noted by: Laura Kataja + Changes of Elm2.4ME+ PL117a (25) compared with Elm2.4ME+ PL117 (25) ------------------------------------------------------------------- Index: elm2.4.ME+.117b-cvs/src/args.c *** elm2.4.ME+.117a/src/args.c 2004-06-27 22:39:33.000000000 +0300 --- elm2.4.ME+.117b-cvs/src/args.c 2004-07-10 11:08:20.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: args.c,v 1.62 2004/06/18 09:29:51 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.62 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: args.c,v 1.63 2004/07/10 08:08:20 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.63 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) *************** *** 106,113 **** #if DEBUG set_debugging(optarg); #else ! lib_error(CATGETS(elm_msg_cat, ElmSet, ElmArgsIngoringDebug, ! "Warning: system created without debugging enabled - request ignored\n")); #endif break; case 'D' : --- 106,114 ---- #if DEBUG set_debugging(optarg); #else ! lib_error(CATGETS(elm_msg_cat, ElmSet, ElmArgsIngoringDebug, ! "Warning: system created without debugging enabled - request ignored\n")); ! error_sleep(1); #endif break; case 'D' : Index: elm2.4.ME+.117b-cvs/src/init.c *** elm2.4.ME+.117a/src/init.c 2004-06-27 22:39:33.000000000 +0300 --- elm2.4.ME+.117b-cvs/src/init.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: init.c,v 1.50 2004/06/18 09:29:51 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.50 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: init.c,v 1.51 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.51 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) *************** *** 245,251 **** /* * If debug level is fairly low, ignore keyboard signals - * until the screen is set up. */ /* FIXME -- Probably wrong variable ... */ --- 245,250 ---- *************** *** 253,258 **** --- 252,260 ---- signal(SIGINT, SIG_IGN); signal(SIGQUIT, SIG_IGN); } + #else + signal(SIGINT, SIG_IGN); + signal(SIGQUIT, SIG_IGN); #endif if(!check_only && !batch_only) { Index: elm2.4.ME+.117b-cvs/utils/answer.c *** elm2.4.ME+.117a/utils/answer.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/answer.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: answer.c,v 1.16 2004/03/27 18:31:48 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.16 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: answer.c,v 1.17 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.17 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) *************** *** 105,111 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 105,111 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/elmalias.c *** elm2.4.ME+.117a/utils/elmalias.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmalias.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmalias.c,v 1.16 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.16 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmalias.c,v 1.17 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.17 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) *************** *** 239,245 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 239,245 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/elmbindata.c *** elm2.4.ME+.117a/utils/elmbindata.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmbindata.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmbindata.c,v 1.5 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.5 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmbindata.c,v 1.6 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.6 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ *************** *** 133,139 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 133,139 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/elmcharset.c *** elm2.4.ME+.117a/utils/elmcharset.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmcharset.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmcharset.c,v 1.29 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.29 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmcharset.c,v 1.30 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.30 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ *************** *** 163,169 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 163,169 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/elmlibregister.c *** elm2.4.ME+.117a/utils/elmlibregister.c 2004-06-27 22:39:33.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmlibregister.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmlibregister.c,v 1.7 2004/06/18 09:29:51 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.7 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) ***************************************************************************** --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmlibregister.c,v 1.8 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.8 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) ***************************************************************************** *************** *** 135,141 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 135,141 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/elmrc-write.c *** elm2.4.ME+.117a/utils/elmrc-write.c 2004-06-27 22:39:33.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmrc-write.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmrc-write.c,v 1.14 2004/06/18 09:29:51 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.14 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) ***************************************************************************** --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmrc-write.c,v 1.15 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.15 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) ***************************************************************************** *************** *** 133,139 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 133,139 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/elmstringconvert.c *** elm2.4.ME+.117a/utils/elmstringconvert.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmstringconvert.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmstringconvert.c,v 1.8 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.8 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmstringconvert.c,v 1.9 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.9 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ *************** *** 252,258 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 252,258 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/elmterminal.c *** elm2.4.ME+.117a/utils/elmterminal.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmterminal.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmterminal.c,v 1.13 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.13 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmterminal.c,v 1.14 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.14 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ *************** *** 88,94 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); } #endif } --- 88,94 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); } #endif } Index: elm2.4.ME+.117b-cvs/utils/elmunidata.c *** elm2.4.ME+.117a/utils/elmunidata.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/elmunidata.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: elmunidata.c,v 1.18 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.18 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: elmunidata.c,v 1.19 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.19 $ $State: Exp $ * * Author: Kari Hurtta (was hurtta+elm@ozone.FMI.FI) *****************************************************************************/ *************** *** 111,117 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 111,117 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/fastmail.c *** elm2.4.ME+.117a/utils/fastmail.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/fastmail.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: fastmail.c,v 1.30 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.30 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: fastmail.c,v 1.31 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.31 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) *************** *** 406,412 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 406,412 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/newalias.c *** elm2.4.ME+.117a/utils/newalias.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/newalias.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: newalias.c,v 1.15 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.15 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: newalias.c,v 1.16 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.16 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) *************** *** 87,93 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 87,93 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! sleep(5+sleepmsg); #endif } } Index: elm2.4.ME+.117b-cvs/utils/prlong.c *** elm2.4.ME+.117a/utils/prlong.c 2004-03-30 19:38:44.000000000 +0300 --- elm2.4.ME+.117b-cvs/utils/prlong.c 2004-07-10 11:08:21.000000000 +0300 *************** *** 1,7 **** ! static char rcsid[] = "@(#)$Id: prlong.c,v 1.11 2004/03/27 18:31:49 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.11 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) --- 1,7 ---- ! static char rcsid[] = "@(#)$Id: prlong.c,v 1.12 2004/07/10 08:08:21 hurtta Exp $"; /****************************************************************************** ! * The Elm (ME+) Mail System - $Revision: 1.12 $ $State: Exp $ * * Modified by: Kari Hurtta * (was hurtta+elm@ozone.FMI.FI) *************** *** 140,146 **** panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! error_sleep(5+sleepmsg); #endif } } --- 140,146 ---- panic_dprint("WARNING: Edit manually out sensitive information from that file!\n"); lower_prompt("WARNING: Debug file may include passwords -- edit it!"); ! xsleep(5+sleepmsg); #endif } }