Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 245)

Ticket Resolution Summary Owner Reporter
#387 wontfix Fix a prototype of putenv() KO Myung-Hun
Description

Hi/2.

A prototype of putenv() of kLIBC is:

int putenv(const char *);

But POSIX says at https://pubs.opengroup.org/onlinepubs/9699919799/functions/putenv.html:

int putenv(char *);

It would be better to conform to POSIX. In addition, FreeBSD doesn't use const, too. See https://www.freebsd.org/cgi/man.cgi?query=putenv.

#204 fixed chown/chgrp functions are only stubs, proposed fix Yuri Dario YDARIO
Description

The two functions chown/chgrp are only stubs for validating file path and nothing more.

The attached code implements setting/getting the two fields; it misses code validation for current user, to check if he has enough rights to operate.

#213 fixed stat() not reporting readonly status correctly Yuri Dario Steven Levine
Description

libc\src\kNIX\os2\b_fsNativeFileStat.c contains a typo that causes it to always report files as read-write.

b_fsNativeFileStat.c#189 reads

if (rc & FILE_READONLY)

and should read

if (fAttributtes & FILE_READONLY)

Note: See TracQuery for help on using queries.