Browse code

Fix spelling mistake

git-svn: trunk@2515

Nigel Horne authored on 2006/11/23 18:46:50
Showing 1 changed files
... ...
@@ -29,7 +29,7 @@
29 29
  * TODO:	Check the NGS code for vulnerabilities, leaks etc.
30 30
  * TODO:	Check the NGS code is thread safe
31 31
  */
32
-static	char	const	rcsid[] = "$Id: jscript.c,v 1.9 2006/11/23 09:44:30 njh Exp $";
32
+static	char	const	rcsid[] = "$Id: jscript.c,v 1.10 2006/11/23 09:46:50 njh Exp $";
33 33
 
34 34
 #if HAVE_CONFIG_H
35 35
 #include "clamav-config.h"
... ...
@@ -371,7 +371,7 @@ run_js(const char *filename, const char *dir)
371 371
 
372 372
 	pthread_mutex_lock(&mutex);
373 373
 	if(pthread_cond_timedwait(&cond, &mutex, &ts) == ETIMEDOUT) {
374
-		cli_warnmsg("Run away javascript stopped after %d seconds\n",
374
+		cli_warnmsg("Runaway javascript stopped after %d seconds\n",
375 375
 			VM_TIMEOUT);
376 376
 		/*pthread_kill(tid, SIGUSR1);*/
377 377
 		if(pthread_cancel(tid) < 0)