Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/archival/libunarchive/filter_accept_all.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 815 by niro, Sat Sep 1 22:45:15 2007 UTC revision 816 by niro, Fri Apr 24 18:33:46 2009 UTC
# Line 5  Line 5 
5   * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.   * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
6   */   */
7    
8  #include <stdlib.h>  #include "libbb.h"
9  #include "unarchive.h"  #include "unarchive.h"
10    
11  /* Accept any non-null name, its not really a filter at all */  /* Accept any non-null name, its not really a filter at all */
12  char filter_accept_all(archive_handle_t *archive_handle)  char FAST_FUNC filter_accept_all(archive_handle_t *archive_handle)
13  {  {
14   if (archive_handle->file_header->name)   if (archive_handle->file_header->name)
15   return EXIT_SUCCESS;   return EXIT_SUCCESS;

Legend:
Removed from v.815  
changed lines
  Added in v.816