Репозиторий ALT Linux backports/2.4
Последнее обновление: 9 июля 2008 | Пакетов: 497 | Посещений: 1583827
 поиск   регистрация   авторизация 
 
Группа :: Архивирование/Резервное копирование
Пакет: tar

 Главная   Изменения   Спек   Патчи   Загрузить   Bugs and FR 

Патч: tar-1.15.1-alt-parse_opt-Iy.patch


--- tar-1.15.1/src/tar.c.orig	2004-12-21 14:11:26 +0000
+++ tar-1.15.1/src/tar.c	2005-05-15 12:33:02 +0000
@@ -709,10 +709,11 @@ parse_opt(int key, char *arg, struct arg
       break;
       
     case 'I':
-      USAGE_ERROR ((0, 0,
-		    _("Warning: the -I option is not supported;"
-		      " perhaps you meant -j or -T?")));
-      break;
+    case 'y':
+      fprintf (stderr,
+	       "Warning: option '%c' is deprecated! Next time use -j instead.\n",
+	       key);
+      /* Fall through to using bzip2. */
       
     case 'j':
       set_use_compress_program_option ("bzip2");
@@ -900,12 +901,6 @@ parse_opt(int key, char *arg, struct arg
 	}
       break;
       
-    case 'y':
-      USAGE_ERROR ((0, 0,
-		    _("Warning: the -y option is not supported;"
-		      " perhaps you meant -j?")));
-      break;
-      
     case 'z':
       set_use_compress_program_option ("gzip");
       break;
 
design & coding: Vladimir Lettiev aka crux © 2004-2005