From f42b6c84c585d671ebbfe3f973c4ab3340f24e03 Mon Sep 17 00:00:00 2001 From: david Date: Fri, 7 Nov 2008 20:41:47 +0000 Subject: [PATCH] Add a workaround for a mysterious crash under Mac OS X 10.5. If importing the gtk module raises an exception, attempt to import it once more. For unknown reasons, in certain circumstances Apple's X11 will reject the first connection but accept the second and any later connections. It happens when the user has set DISPLAY in one of his shell startup files, which I think is common for people who upgraded from 10.4. --- CHANGELOG | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index bf33fccfc..3248d7815 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,13 @@ # Nmap Changelog ($Id$); -*-text-*- +o [Zenmap] Added a workaround for a crash + GtkWarning: could not open display + on Mac OS X 10.5. The problem is caused by setting the DISPLAY + environment variable in one of your shell startup files; that + shouldn't be done under 10.5 and removing it will make other + X11-using applications work better. Zenmap will now handle the + situation automatically. [David] + o http-auth.nse now properly checks for default authentication credentials. A bug prevented it from working before. [Vlatko Kosturjak]