Update some comments and whitespace.

svn path=/trunk/; revision=23509
This commit is contained in:
Gerald Combs 2007-11-20 16:46:11 +00:00
parent 7eb5048da9
commit e11ec68f93
2 changed files with 7 additions and 4 deletions

View File

@ -43,7 +43,7 @@
void
get_credential_info(void)
{
npf_sys_is_running();
npf_sys_is_running();
}
/*

View File

@ -29,21 +29,24 @@
extern void get_credential_info(void);
/**
* Was this program started with special privileges?
* Was this program started with special privileges? get_credential_info()
* MUST be called before calling this.
* @return TRUE if the program was started with special privileges,
* FALSE otherwise.
*/
extern gboolean started_with_special_privs(void);
/**
* Is this program running with special privileges?
* Is this program running with special privileges? get_credential_info()
* MUST be called before calling this.
* @return TRUE if the program is running with special privileges,
* FALSE otherwise.
*/
extern gboolean running_with_special_privs(void);
/**
* Permanently relinquish special privileges.
* Permanently relinquish special privileges. get_credential_info()
* MUST be called before calling this.
*/
extern void relinquish_special_privs_perm(void);