소스 검색

(decode_options): Fix typo in invoking add_exclude_file.

Paul Eggert 26 년 전
부모
커밋
33a2b1fc06
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/tar.c

+ 1 - 1
src/tar.c

@@ -798,7 +798,7 @@ decode_options (int argc, char *const *argv)
 	break;
 
       case 'X':
-	if (add_exclude_file (NULL, add_filtered_exclude, optarg, '\n') != 0)
+	if (add_exclude_file (add_filtered_exclude, NULL, optarg, '\n') != 0)
 	  FATAL_ERROR ((0, errno, "%s", optarg));
 	break;