summaryrefslogtreecommitdiff
path: root/source/lib/account_pol.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-12-31 14:05:22 +0000
committerAndrew Tridgell <tridge@samba.org>2001-12-31 14:05:22 +0000
commit65e857b36e170e3ecd78bf6695ae73342e9c04cd (patch)
treed9fe636f245f92fd7e7b3f1849484d93ef030508 /source/lib/account_pol.c
parent48aa90c48c5f0e3054c4acdc49668e222e7c0d36 (diff)
downloadsamba-65e857b36e170e3ecd78bf6695ae73342e9c04cd.tar.gz
more irix -64 portability fixes
Diffstat (limited to 'source/lib/account_pol.c')
-rw-r--r--source/lib/account_pol.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/source/lib/account_pol.c b/source/lib/account_pol.c
index 1b70d0ceb0c..33579108fa3 100644
--- a/source/lib/account_pol.c
+++ b/source/lib/account_pol.c
@@ -71,34 +71,24 @@ static char *decode_account_policy_name(int field)
switch (field) {
case AP_MIN_PASSWORD_LEN:
return "min password length";
- break;
case AP_PASSWORD_HISTORY:
return "password history";
- break;
case AP_USER_MUST_LOGON_TO_CHG_PASS:
return "user must logon to change password";
- break;
case AP_MAX_PASSWORD_AGE:
return "maximum password age";
- break;
case AP_MIN_PASSWORD_AGE:
return "minimum password age";
- break;
case AP_LOCK_ACCOUNT_DURATION:
return "lockout duration";
- break;
case AP_RESET_COUNT_TIME:
return "reset count minutes";
- break;
case AP_BAD_ATTEMPT_LOCKOUT:
return "bad lockout attempt";
- break;
case AP_TIME_TO_LOGOUT:
return "disconnect time";
- break;
default:
return "undefined value";
- break;
}
}