Changeset 27526e87 in mainline for kernel/generic/src/ipc/ipc.c
- Timestamp:
- 2008-09-09T19:24:42Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0320823
- Parents:
- e40e3007
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/ipc.c
re40e3007 r27526e87 202 202 203 203 if (call->flags & IPC_CALL_FORWARDED) { 204 if (call-> data.caller_phone) {204 if (call->caller_phone) { 205 205 /* Demasquerade the caller phone. */ 206 call->data.phone = call-> data.caller_phone;206 call->data.phone = call->caller_phone; 207 207 } 208 208 } … … 361 361 362 362 if (mode & IPC_FF_ROUTE_FROM_ME) { 363 if (!call-> data.caller_phone)364 call-> data.caller_phone = call->data.phone;363 if (!call->caller_phone) 364 call->caller_phone = call->data.phone; 365 365 call->data.phone = newphone; 366 366 }
Note:
See TracChangeset
for help on using the changeset viewer.