search for: 166a169

Displaying 1 result from an estimated 1 matches for "166a169".

2010 Sep 09
2
configure error
...e the reason. ----------------------------------------------------------------------------- 109a110 > void *cmsg_data; 132c133,134 < *((int *) CMSG_DATA(cmsg)) = send_fd; --- > cmsg_data = CMSG_DATA(cmsg); > *(int *)cmsg_data = send_fd; 166a169 > void *cmsg_data; 196,197c199,202 < else < *fd = *((int *) CMSG_DATA(cmsg)); --- > else { > cmsg_data = CMSG_DATA(cmsg); > *fd = *(int *)cmsg_data; > } ------------------------------------------------------...