mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
Remove legacysun code blocks
This commit is contained in:
parent
e1e2004696
commit
d380b0fac6
2 changed files with 0 additions and 41 deletions
|
@ -46,19 +46,6 @@
|
||||||
#include "calctool.h"
|
#include "calctool.h"
|
||||||
#include "ds_common.h"
|
#include "ds_common.h"
|
||||||
|
|
||||||
#ifdef legacysun
|
|
||||||
|
|
||||||
/* Copied from math.h */
|
|
||||||
struct exception {
|
|
||||||
int type;
|
|
||||||
char *name;
|
|
||||||
double arg1;
|
|
||||||
double arg2;
|
|
||||||
double retval;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
time_t time() ;
|
time_t time() ;
|
||||||
|
|
||||||
double max_fix[4] = {
|
double max_fix[4] = {
|
||||||
|
|
|
@ -150,14 +150,6 @@ PamAuthenticate ( char* prog_name,
|
||||||
return(PAM_AUTH_ERR);
|
return(PAM_AUTH_ERR);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef legacysun
|
|
||||||
/* Solaris BSM Audit trail */
|
|
||||||
|
|
||||||
audit_login_save_host(display_name);
|
|
||||||
audit_login_save_ttyn(line_dev);
|
|
||||||
audit_login_save_port();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
status = PamInit(prog_name, user, line_dev, display_name);
|
status = PamInit(prog_name, user, line_dev, display_name);
|
||||||
|
|
||||||
if (status == PAM_SUCCESS) {
|
if (status == PAM_SUCCESS) {
|
||||||
|
@ -167,23 +159,6 @@ PamAuthenticate ( char* prog_name,
|
||||||
status = pam_authenticate( pamh, 0 );
|
status = pam_authenticate( pamh, 0 );
|
||||||
pam_auth_trys++;
|
pam_auth_trys++;
|
||||||
|
|
||||||
#ifdef legacysun
|
|
||||||
pwd = getpwnam(user);
|
|
||||||
audit_login_save_pw(pwd);
|
|
||||||
|
|
||||||
if (status != PAM_SUCCESS) {
|
|
||||||
audit_login_bad_pw();
|
|
||||||
|
|
||||||
if (status == PAM_MAXTRIES) {
|
|
||||||
pam_auth_trys = PAM_LOGIN_MAXTRIES+1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (pam_auth_trys > PAM_LOGIN_MAXTRIES) {
|
|
||||||
audit_login_maxtrys();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (status != PAM_SUCCESS) {
|
if (status != PAM_SUCCESS) {
|
||||||
sleep(PAM_LOGIN_SLEEPTIME);
|
sleep(PAM_LOGIN_SLEEPTIME);
|
||||||
if (pam_auth_trys > PAM_LOGIN_MAXTRIES) {
|
if (pam_auth_trys > PAM_LOGIN_MAXTRIES) {
|
||||||
|
@ -262,9 +237,6 @@ PamAccounting( char* prog_name,
|
||||||
Debug("PamAccounting: USER_PROCESS open_session error=%d\n",
|
Debug("PamAccounting: USER_PROCESS open_session error=%d\n",
|
||||||
status);
|
status);
|
||||||
}
|
}
|
||||||
#ifdef legacysun
|
|
||||||
if (status == PAM_SUCCESS) audit_login_success();
|
|
||||||
#endif
|
|
||||||
session_type = SOLARIS_LOGIN;
|
session_type = SOLARIS_LOGIN;
|
||||||
status = solaris_setutmp_mgmt(user, tty_line, display_name,
|
status = solaris_setutmp_mgmt(user, tty_line, display_name,
|
||||||
session_type, entry_type, entry_id);
|
session_type, entry_type, entry_id);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue