summaryrefslogtreecommitdiff
path: root/desktop/bspview.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/bspview.c')
-rw-r--r--desktop/bspview.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/bspview.c b/desktop/bspview.c
index bb2e82a6..0597024d 100644
--- a/desktop/bspview.c
+++ b/desktop/bspview.c
@@ -2549,13 +2549,13 @@ NLM_EXTERN void Nlm_LaunchWebPage (Char *url)
}
#endif
#ifdef WIN_MOTIF
- argv [0] = "netscape";
+ argv [0] = "sensible-browser";
argv [1] = url;
argv [2] = NULL;
child = fork();
if(child == 0) {
- if (execvp ("netscape", argv) == -1) {
- Message (MSG_POST, "Unable to launch netscape");
+ if (execvp ("sensible-browser", argv) == -1) {
+ Message (MSG_POST, "Unable to launch browser");
exit(-1);
}
}