In message <[EMAIL PROTECTED]> you write:

|> The problem is that the mapped path patch does something like
|>
|>      #define getcwd(buffer, length)  mapped_path_cwd(buffer)
|>      #define getwd(buffer)           mapped_path_cwd(buffer)

Something like, but not exactly:

        #define getwd(d) mapping_getwd(d)
        #define getcwd(d,u) mapping_getcwd((d),(u))

and mapping_getcwd() _does_ honor the size argument.

        vb

Reply via email to