aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/tip
Commit message (Collapse)AuthorAgeFilesLines
* #include <errno.h> where needed. Kill extern int errno;.Warner Losh2000-04-147-8/+15
| | | | | | | Minor warnings in tip corrected. Notes: svn path=/head/; revision=59217
* Resurrect the 'cdelay' and 'ldelay' features of /usr/bin/tip.Brian S. Dean2000-03-152-4/+26
| | | | Notes: svn path=/head/; revision=58095
* Remove single-space hard sentence breaks. These degrade the qualitySheldon Hearn2000-03-011-2/+4
| | | | | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc. Notes: svn path=/head/; revision=57670
* Fix a 'tip' core dump caused by a null pointer dereference whenBrian S. Dean2000-02-221-1/+1
| | | | | | | | | | | sending a file to the remote system. PR: bin/15660 Reviewed by: jkh Approved by: jkh Notes: svn path=/head/; revision=57386
* Fix warning: return type of `main' is not `int'Peter Wemm1999-09-151-1/+1
| | | | Notes: svn path=/head/; revision=51287
* $Id$ -> $FreeBSD$Peter Wemm1999-08-2818-18/+18
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-122-0/+2
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48792
* Rename a function to avoid conflict with the new syscall 'pwrite'.Dmitrij Tejblum1999-04-044-18/+18
| | | | Notes: svn path=/head/; revision=45314
* Some 64bit portability fixes.Doug Rabson1998-10-032-5/+8
| | | | Notes: svn path=/head/; revision=39915
* Makefile.inc was conditionally setting vars already set by bsd.own.mkDavid E. O'Brien1998-09-212-5/+8
| | | | | | | | which is read before tip's own Makefile is. Move those varables here where they will do some good. Notes: svn path=/head/; revision=39539
* Don't assume that time_t is long.Bruce Evans1998-06-291-2/+2
| | | | Notes: svn path=/head/; revision=37262
* Fix a few typos.Steve Price1998-06-271-3/+4
| | | | | | | | PR: 7092 Submitted by: Kauzo Horikawa <h-horik@yk.rim.or.jp> Notes: svn path=/head/; revision=37202
* sizeof(foo - 1) isn't the same as sizeof(foo) - 1.Warner Losh1998-06-091-3/+3
| | | | | | | Pointed out by: Theo De Raadt. Notes: svn path=/head/; revision=36815
* o Use snprintf rather than sprintf.Warner Losh1998-06-093-11/+12
| | | | | | | | | o Revert gid to caller before a shell so we can run setgid. o minor style nits to make bruce happy :-) o use strncpy correctly. Notes: svn path=/head/; revision=36791
* Remove special global tags support; we don't do it that way anymore.Eivind Eklund1998-03-261-2/+0
| | | | Notes: svn path=/head/; revision=34893
* Many places in the code NULL is used in integer context, wherePoul-Henning Kamp1997-09-184-7/+7
| | | | | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no> Notes: svn path=/head/; revision=29574
* Removed a buffer overflow in args().Eivind Eklund1997-08-262-35/+38
| | | | | | | | While I'm here, fix a bug with 'register' in conjunction with setjmp(), staticize and do some -Wall cleaning. Notes: svn path=/head/; revision=28788
* Change from using sys/param.h and MAXPATHLEN to using limits.h and PATH_MAXWarner Losh1997-08-254-11/+11
| | | | | | | | | | to avoid the NOFILE problem. Back out NOFILE kludge. Fix unexploitable buffer overflow in tipout.c. Reviewed by: millert@openbsd.org (tipout.c) Submitted by: millert@openbsd.org (rest of idea) Notes: svn path=/head/; revision=28686
* Fix buffer overflow. prompt didn't get a size for its buffer,Warner Losh1997-08-223-20/+25
| | | | | | | | so it could overflow it. Also made some filenames MAXPATHLEN long rather than 80 long. Notes: svn path=/head/; revision=28606
* Add prototypes, usage(). Use err(3).Philippe Charnier1997-08-1817-69/+240
| | | | Notes: svn path=/head/; revision=28365
* kill the undeadPeter Wemm1997-07-1323-5708/+0
| | | | Notes: svn path=/head/; revision=27369
* This commit was generated by cvs2svn to compensate for changes in r27241,Bruce Evans1997-07-0623-0/+5708
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=27242
| * Finish importing Lite2's src/usr.bin, except for ex, diff, grep, mail,Bruce Evans1997-07-0623-0/+5708
| | | | | | | | pascal and vmstat.sparc. All changed files on the vendor branch should already have been imported. Notes: svn path=/vendor/CSRG/dist/; revision=27241
* Typo fix.Masafumi Max NAKANE1997-06-141-1/+1
| | | | | | | | PR: 3869 Submitted by: Kazuo Horikawa <k-horik@yk.rim.or.jp> Notes: svn path=/head/; revision=26654
* Include types.h before libutil.hJordan K. Hubbard1997-05-111-0/+1
| | | | Notes: svn path=/head/; revision=25697
* Add support for GLOBAL style tags.Jordan K. Hubbard1997-04-131-0/+2
| | | | Notes: svn path=/head/; revision=24862
* Fixed DPADD.Bruce Evans1997-04-011-2/+2
| | | | Notes: svn path=/head/; revision=24475
* Remove the syslog stuff, and allow various return valuesBrian Somers1997-03-312-2/+6
| | | | | | | | | | | | in uu_lock(). Add uu_lockerr() for turning the results of uu_lock into something printable. Remove bogus section in man page about race conditions allowing both processes to get the lock. Include libutil.h and use uu_lock() correctly where it should. Suggested by: ache@freebsd.org Notes: svn path=/head/; revision=24461
* Move uucplock into libutil and create a manual page.Brian Somers1997-03-301-4/+2
| | | | Notes: svn path=/head/; revision=24417
* Sort cross references.Wolfram Schneider1997-01-151-2/+2
| | | | Notes: svn path=/head/; revision=21748
* Do not claim that tip is also called cu.Peter Wemm1996-09-191-21/+2
| | | | | | | Submitted by: "Ph. Charnier" <charnier@xp11.frmug.org>, PR#1639 Notes: svn path=/head/; revision=18371
* Fixed DPADD.Bruce Evans1996-09-051-1/+2
| | | | Notes: svn path=/head/; revision=18050
* Bring in my changes for removing the pestilent obj links (unless youJordan K. Hubbard1996-06-241-2/+2
| | | | | | | | really want them) from /usr/src. This is the final version of the patches, incorporating the feedback I've received from -current. Notes: svn path=/head/; revision=16663
* Correct some man page xrefs, and some other minor changes to bring someMike Pritchard1996-04-081-4/+4
| | | | | | | | | man pages up to mdoc guidelines and fix some minor formatting glitches. Also fixed a number of man pages to not abuse the .Xr macro to display functions and path names and a lot of other junk. Notes: svn path=/head/; revision=15135
* Here's a patch that fixes the problem with modem syncronizationPaul Traina1996-03-051-2/+2
| | | | | | | | | | | | | | | problems with tip. There are some hardwired timeouts that ignores the delay that you can set in the modem configuration file. The hard-wire delay is to short if the modem has to switch major modes and reset (ie going from fax to data mode with a reset). Now my modem transistions from HylaFax control to tip control and ppp mode without any problems. Submitted by: Douglas Ambrisko <ambrisko@tcs.com> Notes: svn path=/head/; revision=14393
* Eliminate multiply uucplock.c copiesAndrey A. Chernov1996-03-042-146/+3
| | | | Notes: svn path=/head/; revision=14370
* This commit was generated by cvs2svn to compensate for changes in r13122,Peter Wemm1995-12-3023-5708/+0
| | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=13123
* recording cvs-1.6 file deathPeter Wemm1995-12-305-1200/+0
| | | | Notes: svn path=/cvs2svn/branches/ATT/; revision=13122
* Make tip recognize EOF in more cases.Poul-Henning Kamp1995-11-261-6/+17
| | | | Notes: svn path=/head/; revision=12491
* We wouldn't want to kill init if our parent died...Poul-Henning Kamp1995-10-091-2/+4
| | | | | | | Spotted by: davidg Notes: svn path=/head/; revision=11370
* Die if we get errors from the tty.Poul-Henning Kamp1995-10-061-3/+5
| | | | Notes: svn path=/head/; revision=11281
* Rename PATH_LOCK to PATH_UUCPLOCKAndrey A. Chernov1995-09-231-1/+1
| | | | Notes: svn path=/head/; revision=10976
* Use new _PATH_LOCKAndrey A. Chernov1995-09-202-2/+2
| | | | | | | Fix bug: pid was not assigned Notes: svn path=/head/; revision=10927
* Remove trailing whitespace.Rodney W. Grimes1995-05-3015-83/+83
| | | | Notes: svn path=/head/; revision=8874
* Fix nested comments for -Wcomment warnings.Rodney W. Grimes1995-05-092-2/+2
| | | | Notes: svn path=/head/; revision=8382
* Greatly clean up the Makefiles and add a Makefile.inc to more obviouslyJordan K. Hubbard1995-04-013-15/+20
| | | | | | | advertise tip's choice of location and perms. Notes: svn path=/head/; revision=7547
* I must have been very sleepy last night, sigh..Jordan K. Hubbard1995-03-311-3/+9
| | | | | | | | | | 1. Nuke out the aculib files that crept in somehow by mistake. 2. Fix the ${.CURDIR} path so that this stuff actually compiles. It actually compiled for me before the commit, but I must have had something short-cutting the bug. Notes: svn path=/head/; revision=7539
* Tom Gray's new tip changes to support a modem capabilities database andJordan K. Hubbard1995-03-3143-49/+9179
| | | | | | | | fixes to many assorted bugs and misfeatures. Submitted by: Tom Gray - DCA <dcasba@rain.org> Notes: svn path=/head/; revision=7527
* Use ASCII lock instead of BINARY one.Andrey A. Chernov1994-12-191-22/+15
| | | | Notes: svn path=/head/; revision=5173
* Use proper LOCKDIR nameAndrey A. Chernov1994-12-191-1/+1
| | | | Notes: svn path=/head/; revision=5169