Bug#400559: vtun: implicit pointer conversions

2006-11-29 Thread Martín Ferrari
On 11/27/06, dann frazier [EMAIL PROTECTED] wrote: hrm... well you could try using ptsname_r instead of ptsname - this requires defining _GNU_SOURCE instead of _XOPEN_SOURCE. See the ptsname manpage. Another option is to call open(/dev/ptmx,O_RDWR|O_NOCTTY) instead of getpt(), as per the

Bug#400559: vtun: implicit pointer conversions

2006-11-27 Thread Martín Ferrari
Hi, On 11/27/06, dann frazier [EMAIL PROTECTED] wrote: Package: vtun Version: 2.6-5 Severity: important Tags: patch This is often due to a missing function prototype definition. Function `ptsname' implicitly converted to pointer at pty_dev.c:51 Function `lzo_malloc' implicitly converted

Bug#400559: vtun: implicit pointer conversions

2006-11-27 Thread dann frazier
On Mon, Nov 27, 2006 at 11:46:02AM -0300, Mart??n Ferrari wrote: I have a problem with this, gcc says pty_dev.c:45: warning: implicit declaration of function 'getpt' The manpage of getpt says it is a GNU extension, so maybe it gets undefined with _XOPEN_SOURCE, but I don't quite understand

Bug#400559: vtun: implicit pointer conversions

2006-11-26 Thread dann frazier
Package: vtun Version: 2.6-5 Severity: important Tags: patch Our automated buildd log filter[1] detected a problem that will cause your package to segfault on architectures where the size of a pointer is greater than the size of an integer, such as ia64 and amd64. This is often due to a missing