Changeset 7fa8589 in mainline for uspace/srv
- Timestamp:
- 2020-01-09T01:04:58Z (6 years ago)
- Children:
- bcd7775
- Parents:
- 76c8209
- git-author:
- Matthieu Riolo <matthieu.riolo@…> (2020-01-05 20:21:10)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2020-01-09 01:04:58)
- Location:
- uspace/srv
- Files:
-
- 2 edited
-
fs/locfs/locfs_ops.c (modified) (2 diffs)
-
vfs/vfs_ops.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/locfs/locfs_ops.c
r76c8209 r7fa8589 596 596 597 597 /* Do not propagate EHANGUP back to VFS. */ 598 if ( (errno_t)rc == EHANGUP)598 if (rc == EHANGUP) 599 599 rc = ENOTSUP; 600 600 … … 660 660 661 661 /* Do not propagate EHANGUP back to VFS. */ 662 if ( (errno_t)rc == EHANGUP)662 if (rc == EHANGUP) 663 663 rc = ENOTSUP; 664 664 -
uspace/srv/vfs/vfs_ops.c
r76c8209 r7fa8589 444 444 chunk->size = ipc_get_arg1(answer); 445 445 446 return (errno_t)rc;446 return rc; 447 447 } 448 448 … … 740 740 vfs_exchange_release(exch); 741 741 742 return (errno_t)rc;742 return rc; 743 743 } 744 744
Note:
See TracChangeset
for help on using the changeset viewer.
