Changeset 410 for trunk/include


Ignore:
Timestamp:
Aug 28, 2012, 7:06:46 PM (12 years ago)
Author:
katerina
Message:

Improvements for ticket #303 (option SetReportFile for writing out summary after file check).

Location:
trunk/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/sh_error.h

    r405 r410  
    191191void sh_efile_report();
    192192int sh_efile_path(const char * str);
     193int sh_efile_group(const char * str);
    193194
    194195/* (re)set the console device(s)
  • trunk/include/sh_static.h

    r145 r410  
    1515void  sh_setpwent(void);
    1616struct group * sh_getgrnam(const char *name);
     17int sh_getgrnam_r(const char *name, struct group *gbuf,
     18               char *buf, size_t buflen, struct group **gbufp);
    1719
    1820struct passwd * sh_getpwnam(const char *name);
     
    3840
    3941#define sh_initgroups initgroups
     42#define sh_getgrnam   getgrnam
     43#define sh_getgrnam_r getgrnam_r
    4044#define sh_getgrgid   getgrgid
    4145#define sh_getgrgid_r getgrgid_r
  • trunk/include/sh_unix.h

    r409 r410  
    340340char *  sh_unix_getUIDdir (int level, uid_t uid, char * out, size_t len);
    341341
     342/* get a group GID
     343 */
     344long sh_group_to_gid (const char * g, int * fail);
    342345
    343346#ifdef HAVE_GETTIMEOFDAY
Note: See TracChangeset for help on using the changeset viewer.