
| Key: |
MODPYTHON-62
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Duplicate
|
| Priority: |
Major
|
| Assignee: |
Unassigned
|
| Reporter: |
Deron Meranda
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
10/Aug/05 08:00 PM
|
|
It appears as if the source file src/connobject.c is incorrect.
connobject.c:261: {"local_ip", T_STRING, OFF(remote_ip), RO},
connobject.c:262: {"local_host", T_STRING, OFF(remote_host), RO},
should instead be
connobject.c:261: {"local_ip", T_STRING, OFF(local_ip), RO},
connobject.c:262: {"local_host", T_STRING, OFF(local_host), RO},
|
|
Description
|
It appears as if the source file src/connobject.c is incorrect.
connobject.c:261: {"local_ip", T_STRING, OFF(remote_ip), RO},
connobject.c:262: {"local_host", T_STRING, OFF(remote_host), RO},
should instead be
connobject.c:261: {"local_ip", T_STRING, OFF(local_ip), RO},
connobject.c:262: {"local_host", T_STRING, OFF(local_host), RO}, |
Show » |
|
At any rate, svn trunk for 3.2 has the correct code and so this issue can be closed.