[BACK]Return to diffdir.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / diff

Diff for /src/usr.bin/diff/diffdir.c between version 1.40 and 1.41

version 1.40, 2010/11/14 18:24:43 version 1.41, 2012/11/29 02:15:44
Line 37 
Line 37 
 #include "diff.h"  #include "diff.h"
 #include "xmalloc.h"  #include "xmalloc.h"
   
 static int selectfile(struct dirent *);  static int selectfile(const struct dirent *);
 static void diffit(struct dirent *, char *, size_t, char *, size_t, int);  static void diffit(struct dirent *, char *, size_t, char *, size_t, int);
   
 #define d_status        d_type          /* we need to store status for -l */  #define d_status        d_type          /* we need to store status for -l */
Line 232 
Line 232 
  * diff, else 0.  Checks the excludes list.   * diff, else 0.  Checks the excludes list.
  */   */
 static int  static int
 selectfile(struct dirent *dp)  selectfile(const struct dirent *dp)
 {  {
         struct excludes *excl;          struct excludes *excl;
   

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41