Displaying 9 results from an estimated 9 matches for "pam_buf_err".
2007 Jun 05
2
pam_ldap-184 compile error
...n this function)
pam_ldap.c: At top level:
pam_ldap.c:600: error: syntax error before '*' token
pam_ldap.c: In function `_cleanup_authtok_data':
pam_ldap.c:602: error: `data' undeclared (first use in this function)
pam_ldap.c: In function `_alloc_config':
pam_ldap.c:617: error: `PAM_BUF_ERR' undeclared (first use in this function)
pam_ldap.c:666: error: `PAM_SUCCESS' undeclared (first use in this function)
pam_ldap.c: In function `_read_config':
pam_ldap.c:771: error: `PAM_SUCCESS' undeclared (first use in this function)
pam_ldap.c:773: error: `PAM_BUF_ERR' undecla...
2011 Aug 19
1
Password sync in 3.6.0 on OS X 10.7, Lion
My company, which is a mac-heavy shop in the printing industry, needed
to migrate to a faster file server. As our directory trees are very
large, both Samba, and Netatalk were bogging down badly on our Linux
server (Samba, due to heavy CPU usage during directory listings - the
case-sensitive file system issue, and netatalk because the cnid db was
getting too big).
Our solution was to switch to a
2002 Jun 25
4
PAM kbd-int with privsep
...0, context_pam2.num_expected = 0; i < num_msg; i++) {
- int style = PAM_MSG_MEMBER(msg, i, msg_style);
- switch (style) {
- case PAM_PROMPT_ECHO_ON:
+ ctxt = data;
+ if (n <= 0 || n > PAM_MAX_NUM_MSG)
+ return (PAM_CONV_ERR);
+ if ((*resp = calloc(n, sizeof **resp)) == NULL)
+ return (PAM_BUF_ERR);
+ for (i = 0; i < n; ++i) {
+ resp[i]->resp_retcode = 0;
+ resp[i]->resp = NULL;
+ switch (msg[i]->msg_style) {
case PAM_PROMPT_ECHO_OFF:
- context_pam2.num_expected++;
+ sshpam_send(ctxt, "p%s", msg[i]->msg);
+ resp[i]->resp = sshpam_receive(ctxt);
+ bre...
2003 Jan 10
0
Samba-2.2.7a Compile error --with-pam
...unction)
nsswitch/pam_winbind.c:529: `PAM_USER_UNKNOWN' undeclared (first use in
this function)
nsswitch/pam_winbind.c:546: `flags' undeclared (first use in this function)
nsswitch/pam_winbind.c:546: `PAM_PRELIM_CHECK' undeclared (first use in
this function)
nsswitch/pam_winbind.c:554: `PAM_BUF_ERR' undeclared (first use in this
function)
nsswitch/pam_winbind.c:578: `PAM_ACCT_EXPIRED' undeclared (first use in
this function)
nsswitch/pam_winbind.c:579: `PAM_NEW_AUTHTOK_REQD' undeclared (first use in
this function)
nsswitch/pam_winbind.c:584: `PAM_OLDAUTHTOK' undeclared (first u...
2002 Jun 28
2
Error when configuring pam on samba (MANDRAKE 8.2 and before)
...tion
)
nsswitch/pam_winbind.c:529: `PAM_USER_UNKNOWN' undeclared (first use in this
fun
ction)
nsswitch/pam_winbind.c:546: `flags' undeclared (first use in this function)
nsswitch/pam_winbind.c:546: `PAM_PRELIM_CHECK' undeclared (first use in this
fun
ction)
nsswitch/pam_winbind.c:554: `PAM_BUF_ERR' undeclared (first use in this
function
)
nsswitch/pam_winbind.c:578: `PAM_ACCT_EXPIRED' undeclared (first use in this
fun
ction)
nsswitch/pam_winbind.c:579: `PAM_NEW_AUTHTOK_REQD' undeclared (first use in
this
function)
nsswitch/pam_winbind.c:584: `PAM_OLDAUTHTOK' undeclared (firs...
2002 Apr 26
0
PAM keyboard-interactive
...0, context_pam2.num_expected = 0; i < num_msg; i++) {
- int style = PAM_MSG_MEMBER(msg, i, msg_style);
- switch (style) {
- case PAM_PROMPT_ECHO_ON:
+ ctxt = data;
+ if (n <= 0 || n > PAM_MAX_NUM_MSG)
+ return (PAM_CONV_ERR);
+ if ((*resp = calloc(n, sizeof **resp)) == NULL)
+ return (PAM_BUF_ERR);
+ for (i = 0; i < n; ++i) {
+ resp[i]->resp_retcode = 0;
+ resp[i]->resp = NULL;
+ switch (msg[i]->msg_style) {
case PAM_PROMPT_ECHO_OFF:
- context_pam2.num_expected++;
+ pam_send(ctxt, "p%s", msg[i]->msg);
+ resp[i]->resp = pam_receive(ctxt);
+ break;
+...
2003 Jan 28
1
[nsswitch/pam_winbind.po] Error 1 With Compiling 3.0
...unction)
nsswitch/pam_winbind.c:562: `PAM_USER_UNKNOWN' undeclared (first use in
this function)
nsswitch/pam_winbind.c:579: `flags' undeclared (first use in this
function)
nsswitch/pam_winbind.c:579: `PAM_PRELIM_CHECK' undeclared (first use in
this function)
nsswitch/pam_winbind.c:587: `PAM_BUF_ERR' undeclared (first use in this
function)
nsswitch/pam_winbind.c:611: `PAM_ACCT_EXPIRED' undeclared (first use in
this function)
nsswitch/pam_winbind.c:612: `PAM_AUTHTOK_EXPIRED' undeclared (first use
in this function)
nsswitch/pam_winbind.c:613: `PAM_NEW_AUTHTOK_REQD' undeclared (fi...
2002 Jul 02
3
New PAM kbd-int diff
...2.num_expected = 0; i < num_msg; i++) {
- int style = PAM_MSG_MEMBER(msg, i, msg_style);
- switch (style) {
- case PAM_PROMPT_ECHO_ON:
+ ctxt = data;
+ if (n <= 0 || n > PAM_MAX_NUM_MSG)
+ return (PAM_CONV_ERR);
+ if ((*resp = calloc(n, sizeof(struct pam_response))) == NULL)
+ return (PAM_BUF_ERR);
+ for (i = 0; i < n; ++i) {
+ resp[i]->resp_retcode = 0;
+ resp[i]->resp = NULL;
+ switch (msg[i]->msg_style) {
case PAM_PROMPT_ECHO_OFF:
- context_pam2.num_expected++;
+ sshpam_send(ctxt, "p%s", msg[i]->msg);
+ resp[i]->resp = sshpam_receive(ctxt);
+ bre...
2002 Jul 01
5
./configure --with-pam
Hi all,
I still have problems with my nt authentication on linux.
My problems start when compiling --with-pam
This is the output, i can't figure out why i get the error.
[root@squid source]# ./configure --with-pam
loading cache ./config.cache
checking for gcc... (cached) gcc
checking whether the C compiler (gcc -O ) works... yes
checking whether the C compiler (gcc -O ) is a