Changeset 3232 in MondoRescue for branches/3.2/mindi-busybox/include/shadow_.h


Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/include/shadow_.h

    r2725 r3232  
    3737    unsigned long sp_flag;  /* Reserved */
    3838};
    39 
    40 /* Paths to the user database files */
    41 #ifndef _PATH_SHADOW
    42 #define _PATH_SHADOW "/etc/shadow"
    43 #endif
    4439
    4540#define setspent    bb_internal_setspent
     
    8580/* Reentrant versions of some of the functions above */
    8681extern int getspent_r(struct spwd *__result_buf, char *__buffer,
    87                size_t __buflen, struct spwd **__result);
     82        size_t __buflen, struct spwd **__result);
    8883#endif
    8984
    9085extern int getspnam_r(const char *__name, struct spwd *__result_buf,
    91                char *__buffer, size_t __buflen,
    92                struct spwd **__result);
     86        char *__buffer, size_t __buflen,
     87        struct spwd **__result);
    9388
    9489#ifdef UNUSED_FOR_NOW
    9590extern int sgetspent_r(const char *__string, struct spwd *__result_buf,
    96             char *__buffer, size_t __buflen,
    97             struct spwd **__result);
     91        char *__buffer, size_t __buflen,
     92        struct spwd **__result);
    9893
    9994extern int fgetspent_r(FILE *__stream, struct spwd *__result_buf,
    100             char *__buffer, size_t __buflen,
    101             struct spwd **__result);
     95        char *__buffer, size_t __buflen,
     96        struct spwd **__result);
    10297/* Protect password file against multi writers */
    10398extern int lckpwdf(void);
Note: See TracChangeset for help on using the changeset viewer.