summaryrefslogtreecommitdiffstats
path: root/source/lib/readline.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix from Michael Steffens <michael_steffens@hp.com> to make signalJeremy Allison2002-01-311-1/+1
| | | | | | processing work correctly in winbindd. This is a really good patch that gives full select semantics to the Samba modified select. Jeremy.
* Removed version number from file header.Tim Potter2002-01-301-2/+1
| | | | Changed "SMB/Netbios" to "SMB/CIFS" in file header.
* Readline has problems on non tty fd's. Use readline replacement to in casesJeremy Allison2002-01-191-31/+32
| | | | | where stdin is !isatty to allow stripts to work. Jeremy.
* Fix typo.Martin Pool2001-11-191-1/+1
|
* Detect libreadline>=4.0, and set HAVE_NEW_LIBREADLINE. At the momentMartin Pool2001-11-191-5/+10
| | | | | this is only to get the cast right, but it might help with other parts of the API that changed later.
* Added comment about why not to cast the assignment ofTim Potter2001-11-191-3/+6
| | | | rl_attempted_completion_function to rl_completion_function_t.
* Oops, Tim says rl_completion_func_t doesn't exist in all versions ofMartin Pool2001-11-191-7/+5
| | | | readline.
* Quieten compiler warnings about a callback function prototype that hasMartin Pool2001-11-191-1/+7
| | | | changed in recent versions of Readline.
* initial support to error report in smbclient, useful when using smbclient -c ↵Simo Sorce2001-10-091-1/+3
| | | | | | in scripts. Thanks to Claudio Cicali aka FleXer for the initial patch
* merge from 2.2Gerald Carter2001-09-301-17/+0
|
* declare dbf in one spotAndrew Tridgell2001-09-101-1/+0
|
* replaced stdio in many parts of samba with a XFILE. XFILE is a cut-downAndrew Tridgell2001-09-101-3/+3
| | | | | | | | | replacemnt of stdio that doesn't suffer from the 8-bit filedescriptor limit that we hit with nasty consequences on some systems I would eventually prefer us to have a configure test to see if we need to replace stdio, but for now this code needs to be tested widely so I'm enabling it by default.
* ^$&%&*$&)% readline uses \n characters instead of letting the terminal wrapTim Potter2001-07-201-13/+34
| | | | | | the screen. This mucks up expect something severe. )-: Don't use readline if the CLI_NO_READLINE environment variable is set.
* Some versions of readline don't have rl_completion_func_t. )-:Tim Potter2001-05-071-2/+1
| | | | Spotted by http://build.samba.org/
* Fixed compiler warning.Tim Potter2001-05-071-1/+2
|
* fixed rpcclient readline codeAndrew Tridgell2001-03-191-1/+1
|
* added basic command completion supportAndrew Tridgell2001-03-191-1/+6
|
* much simpler readline codeAndrew Tridgell2001-03-181-73/+44
| | | | should work with readline 2.x
* much better readline support from Simo Sorce, with some mods from meAndrew Tridgell2001-03-181-0/+126
to make it a bit simpler