Tomi Manninen OH2BNS wrote:

> My guess is there might a problem with ncurses. Red Hat 6 might have a
> version on ncurses that call isn't quite compatible with. If I understood
> Richard correctly this segfault has been there in previous versions too?
>

The problem seems to be in menu.c  I have no idea what I've done here but using
trial and error I came up with this minor change that appears to work.  I tested
it on Slackware 4.0 and it worked there too.

--- menu.c.original     Thu Aug 26 08:35:21 1999
+++ menu.c      Thu Aug 26 09:13:10 1999
@@ -68,12 +68,13 @@
                                } else {
                                        wtouchln(wtab->ptr, awin->fline -
wtab->fline,
                                                awin_lines, 1);
+                                       wnoutrefresh(wtab->ptr);
                                }
                        } else {
                                wtouchln(wtab->ptr, 0, awin_lines - wtab->fline +
awin->fline, 1);
+                               wnoutrefresh(wtab->ptr);
                        }

-                       wnoutrefresh(wtab->ptr);
                }

                wtab = wtab->next;


Bob

Reply via email to