Module: wine
Branch: refs/heads/master
Commit: b222f1bca407d0ada64bda137b91d1f9b25ebb50
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=b222f1bca407d0ada64bda1…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Thu Jul 27 21:46:38 2006 +0200
msi: 0xdeadbeef is too big for a signed int thus producing sign
comparison warnings when compared to an int variable. Use 0xdeadbee
instead.
---
dlls/msi/tests/package.c | 200 +++++++++++++++++++++++-----------------------
1 files changed, 100 insertions(+), 100 deletions(-)
Diff: http://source.winehq.org/git/?p=wine.git;a=commitdiff;h=b222f1bca407d0ada64…
Module: wine
Branch: refs/heads/master
Commit: f439f216410094ab7e4dbda5ff875c785d895f33
URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=f439f216410094ab7e4dbda…
Author: Stefan Siebert <stefan.siebert(a)web.de>
Date: Thu Jul 27 18:08:23 2006 +0200
winebrowser: Pass any given argument that is not a mailto URL to the browser.
---
programs/winebrowser/main.c | 9 +++------
1 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/programs/winebrowser/main.c b/programs/winebrowser/main.c
index ca07c44..690f931 100644
--- a/programs/winebrowser/main.c
+++ b/programs/winebrowser/main.c
@@ -28,7 +28,7 @@
* taken from a registry key.
*
* The argument may be a regular Windows file name, a file URL, an
- * http(s) URL or a mailto URL. In the first three cases the argument
+ * URL or a mailto URL. In the first three cases the argument
* will be fed to a web browser. In the last case the argument is fed
* to a mail client. A mailto URL is composed as follows:
*
@@ -209,12 +209,9 @@ int main(int argc, char *argv[])
}
}
- if (!strncasecmp( url, "http:", 5 ) || !strncasecmp( url, "https:", 6 ))
- return open_http_url( url );
-
if (!strncasecmp( url, "mailto:", 7 ))
return open_mailto_url( url );
- fprintf( stderr, "winebrowser: cannot handle this type of URL: %s\n", url );
- return 1;
+ /* let the browser decide how to handle the given url */
+ return open_http_url( url );
}