Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/libbb/getpty.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/libbb/getpty.c

    r3232 r3621  
    1717#if ENABLE_FEATURE_DEVPTS
    1818    p = open("/dev/ptmx", O_RDWR);
    19     if (p > 0) {
     19    if (p >= 0) {
    2020        grantpt(p); /* chmod+chown corresponding slave pty */
    2121        unlockpt(p); /* (what does this do?) */
Note: See TracChangeset for help on using the changeset viewer.