X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;ds=sidebyside;f=src%2Fheaders%2Fprivsep_op.h;fp=src%2Fheaders%2Fprivsep_op.h;h=069e42549661cfb7994e3d539c3218da340cd5c9;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=7a44d2f00d20697584f5bfc786e46e182e340abd;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b;p=ossec-hids.git diff --git a/src/headers/privsep_op.h b/src/headers/privsep_op.h old mode 100755 new mode 100644 index 7a44d2f..069e425 --- a/src/headers/privsep_op.h +++ b/src/headers/privsep_op.h @@ -1,6 +1,3 @@ -/* @(#) $Id: ./src/headers/privsep_op.h, 2011/09/08 dcid Exp $ - */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -10,22 +7,22 @@ * Foundation */ -/* Functions for privilege separation. - */ +/* Functions for privilege separation */ #ifndef __PRIV_H - #define __PRIV_H + #include "shared.h" -int Privsep_GetUser(char * name); +uid_t Privsep_GetUser(const char *name) __attribute__((nonnull)); -int Privsep_GetGroup(char * name); +gid_t Privsep_GetGroup(const char *name) __attribute__((nonnull)); int Privsep_SetUser(uid_t uid); int Privsep_SetGroup(gid_t gid); -int Privsep_Chroot(char * path); +int Privsep_Chroot(const char *path) __attribute__((nonnull)); #endif +