Changeset 18525c5 in mainline for uspace/srv/vfs/vfs_mount.c
- Timestamp:
- 2007-10-04T13:00:10Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1c38445
- Parents:
- 116d3f6f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_mount.c
r116d3f6f r18525c5 218 218 vfs_release_phone(phone); 219 219 220 if ((rc1 == EOK) && (rc2 == EOK)) 221 ipc_answer_fast(rid, EOK, 0, 0); 222 else if (rc1 != EOK) 220 if (rc2 == EOK) 223 221 ipc_answer_fast(rid, rc1, 0, 0); 222 else if (rc1 == EOK) 223 ipc_answer_fast(rid, rc2, 0, 0); 224 224 else 225 ipc_answer_fast(rid, rc 2, 0, 0);225 ipc_answer_fast(rid, rc1, 0, 0); 226 226 } 227 227
Note:
See TracChangeset
for help on using the changeset viewer.