Displaying 3 results from an estimated 3 matches for "successi".
Did you mean:
success
2009 Sep 28
0
TERM=linux results libc.so.6 not found
...to run a cobol application in a VM. So far, so
good. The problem is that when I set the $TERM variable to linux, and
run the program, I get:
/opt/cobol/bin/cobrun: error while loading shared libraries: libc.so.6:
cannot open shared object file: No such file or directory
If I put TERM=xterm, I can successifully run the program. It also works
with TERM=vt100, TERM=xterm-new and TERM=xterm-old.
The reason I have to use TERM=linux is that some keys doesn''t work
properly on the application when using different term, which is also
pretty strange.
Does anybody have any clue?
Thanks,
--...
2003 Jul 09
0
[PATCH] Add expired password handling for AIX.
...*/
+ if (geteuid() == 0) {
+ char *msg, *user = pw->pw_name;
+ int result, maxage, result2, maxexpired;
+ struct userpw *upw;
+
+ /*
+ * Check if password has been expired too long. In this case,
+ * passwdexpired still returns 1 but /bin/passwd will fail
+ * while still returning a successiful status, allowing the
+ * login. So, we deny these login attempts here.
+ */
+ upw = getuserpw(user);
+ result = getuserattr(user, S_MAXEXPIRED, &maxexpired, SEC_INT);
+ result2 = getuserattr(user, S_MAXAGE, &maxage, SEC_INT);
+ if (upw != NULL && result == 0 && r...
2003 Jul 30
1
[PATCH] Password expiry merge (AIX parts)
...*/
+ if (geteuid() == 0) {
+ char *msg, *user = pw->pw_name;
+ int result, maxage, result2, maxexpired;
+ struct userpw *upw;
+
+ /*
+ * Check if password has been expired too long. In this case,
+ * passwdexpired still returns 1 but /bin/passwd will fail
+ * while still returning a successiful status, allowing the
+ * login. So, we deny these login attempts here.
+ */
+ upw = getuserpw(user);
+ result = getuserattr(user, S_MAXEXPIRED, &maxexpired, SEC_INT);
+ result2 = getuserattr(user, S_MAXAGE, &maxage, SEC_INT);
+ if (upw != NULL && result == 0 && r...