#Created by Paul W. Elsinghorst diff -urN mldonkey-2.5-4-orig/src/daemon/driver/driverCommands.ml mldonkey-2.5-4-new/src/daemon/driver/driverCommands.ml --- mldonkey-2.5-4-orig/src/daemon/driver/driverCommands.ml 2003-10-12 20:41:30.000000000 +0200 +++ mldonkey-2.5-4-new/src/daemon/driver/driverCommands.ml 2004-01-08 21:37:33.000000000 +0100 @@ -1699,11 +1699,11 @@ try network_parse_url n url with e -> - Printf.bprintf buf "Exception %s for network %s\n" - (Printexc2.to_string e) (n.network_name); - false + Printf.bprintf buf "%s\n" + (Printexc2.to_string e); + false )) then - "Unable to match URL" + "" else "Done" ), " :\t\t\t\tdownload ed2k, sig2dat, torrent or other link"; diff -urN mldonkey-2.5-4-orig/src/networks/donkey/donkeyInteractive.ml mldonkey-2.5-4-new/src/networks/donkey/donkeyInteractive.ml --- mldonkey-2.5-4-orig/src/networks/donkey/donkeyInteractive.ml 2003-10-12 20:41:32.000000000 +0200 +++ mldonkey-2.5-4-new/src/networks/donkey/donkeyInteractive.ml 2004-01-08 21:38:07.000000000 +0100 @@ -98,7 +98,7 @@ filename; 0 -let already_done = Failure "File already downloaded (use 'force_download' if necessary)" +let already_done = Failure "Downloaded" let really_query_download filenames size md4 location old_file absents = begin diff -urN mldonkey-2.5-4-orig/src/networks/donkey_devel/donkeyInteractive.ml mldonkey-2.5-4-new/src/networks/donkey_devel/donkeyInteractive.ml --- mldonkey-2.5-4-orig/src/networks/donkey_devel/donkeyInteractive.ml 2003-10-12 20:41:32.000000000 +0200 +++ mldonkey-2.5-4-new/src/networks/donkey_devel/donkeyInteractive.ml 2004-01-08 21:38:16.000000000 +0100 @@ -102,7 +102,7 @@ lprint_newline (); 0 -let already_done = Failure "File already downloaded (use 'force_download' if necessary)" +let already_done = Failure "Downloaded" let really_query_download filenames size md4 location old_file absents = begin diff -urN mldonkey-2.5-4-orig/src/utils/cdk/printexc2.ml mldonkey-2.5-4-new/src/utils/cdk/printexc2.ml --- mldonkey-2.5-4-orig/src/utils/cdk/printexc2.ml 2003-10-12 20:41:33.000000000 +0200 +++ mldonkey-2.5-4-new/src/utils/cdk/printexc2.ml 2004-01-08 21:38:44.000000000 +0100 @@ -64,7 +64,7 @@ | Match_failure(file, first_char, last_char) -> sprintf locfmt file 0 first_char last_char "Pattern matching failed"; | Assert_failure(file, first_char, last_char) -> - sprintf locfmt file 0 first_char last_char "Assertion failed"; + sprintf "Syntax Error"; | x -> try check x !printers