summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/ChangeLog4
-rw-r--r--cpukit/libnetworking/rtems/rtems_syscall.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 4432734a26..65c213e667 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,5 +1,9 @@
2010-07-14 Joel Sherrill <joel.sherrill@oarcorp.com>
+ * libnetworking/rtems/rtems_syscall.c: Fix warning.
+
+2010-07-14 Joel Sherrill <joel.sherrill@oarcorp.com>
+
* libfs/Makefile.am: Remove reference to imfs_free.c,
wrapup/Makefile.am: Split devfs into its own library.
* libfs/src/imfs/fifoimfs_init.c, libfs/src/imfs/imfs.h,
diff --git a/cpukit/libnetworking/rtems/rtems_syscall.c b/cpukit/libnetworking/rtems/rtems_syscall.c
index 6a3ae9cbab..ee2cf1728e 100644
--- a/cpukit/libnetworking/rtems/rtems_syscall.c
+++ b/cpukit/libnetworking/rtems/rtems_syscall.c
@@ -772,7 +772,7 @@ static const rtems_filesystem_file_handlers_r socket_handlers = {
rtems_bsdnet_ioctl, /* ioctl */
rtems_filesystem_default_lseek, /* lseek */
rtems_bsdnet_fstat, /* fstat */
- rtems_filesystem_default_fstat, /* fchmod */
+ rtems_filesystem_default_fchmod, /* fchmod */
rtems_filesystem_default_ftruncate, /* ftruncate */
rtems_filesystem_default_fpathconf, /* fpathconf */
rtems_filesystem_default_fsync, /* fsync */