Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 50632
Collapse All | Expand All

(-)coda-6.0.6.old/coda-src/kerndep/pioctl.h (-1 / +2 lines)
Lines 100-106 Link Here
100
100
101
101
102
/* people who understand ioctling probably know why this is useful... */
102
/* people who understand ioctling probably know why this is useful... */
103
#define _VICEIOCTL(id)  (_IOW('V', id, struct ViceIoctl))
103
//#define _VICEIOCTL(id)  (_IOW('V', id, struct ViceIoctl))
104
#define _VICEIOCTL(id) (_IOC(_IOC_WRITE,'V',id,sizeof(struct ViceIoctl)))
104
#define _VALIDVICEIOCTL(com) (com >= _VICEIOCTL(0) && com <= _VICEIOCTL(255))
105
#define _VALIDVICEIOCTL(com) (com >= _VICEIOCTL(0) && com <= _VICEIOCTL(255))
105
106
106
107
(-)coda-6.0.6.old/coda-src/venus/comm.cc (-1 / +1 lines)
Lines 173-179 Link Here
173
    sei.AckPoint = sftp_ackpoint;
173
    sei.AckPoint = sftp_ackpoint;
174
    sei.PacketSize = sftp_packetsize;
174
    sei.PacketSize = sftp_packetsize;
175
    sei.EnforceQuota = 1;
175
    sei.EnforceQuota = 1;
176
    sei.Port.Tag = (enum PortTag)0;
176
    sei.Port.Tag = (PortTag)0;
177
    SFTP_Activate(&sei);
177
    SFTP_Activate(&sei);
178
178
179
    /* RPC2 initialization. */
179
    /* RPC2 initialization. */
(-)coda-6.0.6.old/coda-src/venus/fso.h (-2 / +2 lines)
Lines 539-545 Link Here
539
    void DetachHdbBindings();
539
    void DetachHdbBindings();
540
    void DetachHdbBinding(binding *, int =0);
540
    void DetachHdbBinding(binding *, int =0);
541
    int PredetermineFetchState(int, int);
541
    int PredetermineFetchState(int, int);
542
    void SetFetchAllowed(enum HoardFetchState new_state)
542
    void SetFetchAllowed(HoardFetchState new_state)
543
        { FetchAllowed = new_state; }
543
        { FetchAllowed = new_state; }
544
    int IsFetchAllowed()
544
    int IsFetchAllowed()
545
        { if (FetchAllowed == HF_Fetch) 
545
        { if (FetchAllowed == HF_Fetch) 
Lines 547-553 Link Here
547
          else 
547
          else 
548
              return 0; 
548
              return 0; 
549
        }
549
        }
550
    void SetAskingAllowed(enum HoardAskState new_state)
550
    void SetAskingAllowed(HoardAskState new_state)
551
        { AskingAllowed = new_state; }
551
        { AskingAllowed = new_state; }
552
    int IsAskingAllowed()
552
    int IsAskingAllowed()
553
        { if (AskingAllowed == HA_Ask)
553
        { if (AskingAllowed == HA_Ask)

Return to bug 50632