Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/coreutils/libcoreutils/cp_mv_stat.c

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

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 29  int FAST_FUNC cp_mv_stat2(const char *fn Line 29  int FAST_FUNC cp_mv_stat2(const char *fn
29   if (errno != ENOENT) {   if (errno != ENOENT) {
30  #if ENABLE_FEATURE_VERBOSE_CP_MESSAGE  #if ENABLE_FEATURE_VERBOSE_CP_MESSAGE
31   if (errno == ENOTDIR) {   if (errno == ENOTDIR) {
32   bb_error_msg("cannot stat '%s': Path has non-directory component", fn);   bb_error_msg("can't stat '%s': Path has non-directory component", fn);
33   return -1;   return -1;
34   }   }
35  #endif  #endif
36   bb_perror_msg("cannot stat '%s'", fn);   bb_perror_msg("can't stat '%s'", fn);
37   return -1;   return -1;
38   }   }
39   return 0;   return 0;

Legend:
Removed from v.983  
changed lines
  Added in v.984