X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=programs%2Fimagex.c;h=81f2f9f6a7b9aa392488e8e930dd6657dbed5133;hp=67a9723928a599d89036e5a2255b1fd55baa05a8;hb=157ec1472cea867b62aa59405fe9023aa0549399;hpb=90fea9104d865060051c81b3fbaa0281281f43b7 diff --git a/programs/imagex.c b/programs/imagex.c index 67a97239..81f2f9f6 100644 --- a/programs/imagex.c +++ b/programs/imagex.c @@ -1078,24 +1078,13 @@ imagex_progress_func(enum wimlib_progress_msg msg, imagex_printf(T("\nWARNING: Excluding unsupported file or directory\n" " \"%"TS"\" from capture\n"), info->scan.cur_path); break; - case WIMLIB_SCAN_DENTRY_EXCLUDED_SYMLINK: - imagex_printf(T("\nWARNING: Ignoring absolute symbolic link " - "with out-of-tree target:\n" - " \"%"TS"\" => \"%"TS"\"\n" - " (Use --norpfix to capture " - "absolute symbolic links as-is)\n"), - info->scan.cur_path, info->scan.symlink_target); - break; case WIMLIB_SCAN_DENTRY_FIXED_SYMLINK: /* Symlink fixups are enabled by default. This is * mainly intended for Windows, which for some reason * uses absolute junctions (with drive letters!) in the * default installation. On UNIX-like systems, warn the * user when fixing the target of an absolute symbolic - * link, so they know to disable this if they want. - * (Although, more likely they will get the warning - * about an absolute symbolic link with an out-of-tree - * target first.) */ + * link, so they know to disable this if they want. */ #ifndef __WIN32__ imagex_printf(T("\nWARNING: Adjusted target of " "absolute symbolic link \"%"TS"\"\n" @@ -1104,6 +1093,8 @@ imagex_progress_func(enum wimlib_progress_msg msg, info->scan.cur_path); #endif break; + default: + break; } break; case WIMLIB_PROGRESS_MSG_SCAN_END: