Changeset 486f8b84 in rtems
- Timestamp:
- May 29, 2012, 2:19:38 PM (9 years ago)
- Children:
- e308b3a7
- Parents:
- 246e23c (diff), f7f2eb5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ftpd/ftpd.c
r246e23c r486f8b84 1891 1891 1892 1892 chroot_made = chroot_made || chroot(ftpd_root) == 0; 1893 chdir("/");1894 1893 1895 1894 errno = 0; … … 1927 1926 free(info->pass); 1928 1927 task_pool_release(info); 1928 1929 chdir("/"); 1929 1930 } 1930 1931 } -
cpukit/libfs/src/dosfs/msdos_format.c
r246e23c r486f8b84 34 34 #include <stdio.h> 35 35 #include <ctype.h> 36 #include <inttypes.h> 36 37 37 38 #include <rtems/libio_.h> … … 401 402 total_size = fmt_params->bytes_per_sector * fmt_params->totl_sector_cnt; 402 403 msdos_format_printf (rqdata, MSDOS_FMT_INFO_LEVEL_DETAIL, 403 "bytes per sector: % d\ntotal sectors: %d\ntotal size: %lu\n",404 "bytes per sector: %" PRIu32 "\ntotal sectors: %" PRIu32 "\ntotal size: %" PRIu64 "\n", 404 405 fmt_params->bytes_per_sector, fmt_params->totl_sector_cnt, total_size); 405 406 }
Note: See TracChangeset
for help on using the changeset viewer.