Bug #17645 ยป ruby-time_t.patch
| file.c | ||
|---|---|---|
| 
             /* birthtime is not supported on the filesystem */ 
   | 
||
| 
             statx_notimplement("birthtime"); 
   | 
||
| 
         } 
   | 
||
| 
         return rb_time_nano_new(stx->stx_btime.tv_sec, stx->stx_btime.tv_nsec); 
   | 
||
| 
         return rb_time_nano_new((time_t)stx->stx_btime.tv_sec, stx->stx_btime.tv_nsec); 
   | 
||
| 
     } 
   | 
||
| 
     typedef struct statx statx_data; 
   | 
||