Cosmetic: Error messages cleanup.
authorshort <>
Wed, 17 Sep 2003 07:15:24 +0000 (07:15 +0000)
committershort <>
Wed, 17 Sep 2003 07:15:24 +0000 (07:15 +0000)
src/install/acquire/microsoftcom.c

index 80abf67..5e78b5c 100644 (file)
@@ -48,22 +48,22 @@ GnomeVFSURI *uri;
        base_contents=NULL;
        if (GNOME_VFS_OK!=gnome_vfs_read_entire_file(MICROSOFTCOM_URL,&base_size,&base_contents)
                        || base_size<=0) {
-               g_warning(_("Cannot load file-URL pointing base URL: %s"),MICROSOFTCOM_URL);
+               g_warning(_("Cannot load base URL: %s"),MICROSOFTCOM_URL);
                goto fail_free_base_contents;
                }
        base_contents[base_size-1]=0;   /* string terminator */
        if (!(href=strstr(base_contents,"http://download.microsoft.com/")) || !(href_end=strchr(href,'"'))) {
-               g_warning(_("File-URL not found in base URL: %s"),MICROSOFTCOM_URL);
+               g_warning(_("Destination file URL not found in base URL: %s"),MICROSOFTCOM_URL);
                goto fail_free_base_contents;
                }
        *href_end=0;
        if (strncmp(href,"http://",strlen("http://"))) {
-               g_warning(_("File URL not valid: %s"),href);
+               g_warning(_("Destination file URL not valid: %s"),href);
                goto fail_free_base_contents;
                }
        href2=captive_printf_alloca("httpcaptive://%s",href+strlen("http://"));
        if (!(uri=gnome_vfs_uri_new(href2))) {
-               g_warning(_("Found file URL not parsable: %s"),href2);
+               g_warning(_("Found destination file URL not parsable: %s"),href2);
                goto fail_free_base_contents;
                }
        g_free(base_contents);