Mercurial > pidgin
comparison src/browser.c @ 4188:c464dd315be4
[gaim-migrate @ 4419]
ugh. parse error. till i get it compiling...
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Fri, 03 Jan 2003 16:59:53 +0000 |
| parents | 56e07e5ccd9a |
| children | 02f4eacf4c58 |
comparison
equal
deleted
inserted
replaced
| 4187:56e07e5ccd9a | 4188:c464dd315be4 |
|---|---|
| 623 args = g_new(char *, 4); | 623 args = g_new(char *, 4); |
| 624 args[0] = "mozilla"; | 624 args[0] = "mozilla"; |
| 625 args[1] = url; | 625 args[1] = url; |
| 626 args[2] = NULL; | 626 args[2] = NULL; |
| 627 } else if (web_browser == BROWSER_MANUAL) { | 627 } else if (web_browser == BROWSER_MANUAL) { |
| 628 if(strcmp(web_command,"") == 0) | |
| 629 _exit(0); | |
| 630 gchar *space_free_url; | 628 gchar *space_free_url; |
| 631 space_free_url = g_strdelimit(url, " ", '+'); | 629 space_free_url = g_strdelimit(url, " ", '+'); |
| 632 g_snprintf(command, sizeof(command), web_command, space_free_url); | 630 g_snprintf(command, sizeof(command), web_command, space_free_url); |
| 633 g_free(space_free_url); | 631 g_free(space_free_url); |
| 634 args = g_strsplit(command, " ", 0); | 632 args = g_strsplit(command, " ", 0); |
