| 623 args = g_new(char *, 4); |
624 args = g_new(char *, 4); |
| 624 args[0] = "mozilla"; |
625 args[0] = "mozilla"; |
| 625 args[1] = url; |
626 args[1] = url; |
| 626 args[2] = NULL; |
627 args[2] = NULL; |
| 627 } else if (web_browser == BROWSER_MANUAL) { |
628 } else if (web_browser == BROWSER_MANUAL) { |
| 628 gchar *space_free_url; |
629 if(strcmp(web_command,"") == 0) |
| |
630 _exit(0); |
| 629 space_free_url = g_strdelimit(url, " ", '+'); |
631 space_free_url = g_strdelimit(url, " ", '+'); |
| 630 g_snprintf(command, sizeof(command), web_command, space_free_url); |
632 g_snprintf(command, sizeof(command), web_command, space_free_url); |
| 631 g_free(space_free_url); |
633 g_free(space_free_url); |
| 632 args = g_strsplit(command, " ", 0); |
634 args = g_strsplit(command, " ", 0); |
| 633 } |
635 } |