search for: tmppass

Displaying 4 results from an estimated 4 matches for "tmppass".

Did you mean: tmp_pass
2007 Apr 02
1
Mysql issue
Trying to create an extension that will toggle an enum value in our database... exten => s,1,MYSQL(Connect connid localhost myuser tmppass asterisk) exten => s,n,MYSQL(Query resultid ${connid} UPDATE\ night_service\ SET\ status=(SELECT\ CASE\ status\ WHEN\ \'y\'\ THEN\ \'n\'\ ELSE\ \'y\'\ END)); exten => s,n,MYSQL(Clear ${resultid}) exten => s,n,MYSQL(Disconnect ${connid}) exten => s,n,Hangup This...
2000 Mar 28
3
password problem -- or bug?
A Redhat 6.0 linux server with Samba 2.0.6, Windows 95/98 clients. By accident I just discovered a surprising and quite disappointing password problem on our Samba network. If a user on our network has a non-empty Windows password, he is forced to supply his password to log in to the network and gain writing privilegies -- as expected. However, if the user has an empty Windows password, he is
2010 Mar 14
0
[patches] klibc review unsorted patch queue
...or from + * an open file descriptor. + */ +static char * xgetpass(int pfd, const char *prompt) +{ + char *pass; + int buflen, i; + + pass = NULL; + buflen = 0; + for (i=0; ; i++) { + if (i >= buflen-1) { + /* we're running out of space in the buffer. + * Make it bigger: */ + char *tmppass = pass; + buflen += 128; + pass = realloc(tmppass, buflen); + if (pass == NULL) { + /* realloc failed. Stop reading. */ + error("Out of memory while reading passphrase"); + pass = tmppass; /* the old buffer hasn't changed */ + break; + } + } + if (read(pfd, pass+...
2001 Sep 27
0
ERRSRV - ERRpadpw (Bad Password...
I am attempting to setup samba 2.2.1a on a Redhat Linux 6.2 box. When attempting to run the command: smbclient file://gondola/shareddir -U tmpuser%tmppass I am getting the error message: Bad password - name/password pair in a Tree Connect or Session Setup are invalid. As far as I can tell I have set everything up correctly. I have poured thru the docs as well as the archives of previous messages for any clues but have not foud any solutions tha...