Commit Graph

14649 Commits

Author SHA1 Message Date
Jordan K. Hubbard
b95fc60906 Fix some minor reported bogons from the BETA 1996-07-04 23:12:05 +00:00
Wolfram Schneider
6541e32dc2 add manpage link speaker.4 -> spkr.4 1996-07-04 22:54:14 +00:00
John Dyson
c44013cde6 Get rid of PIPE_NBIO, cleaning up the code a bit.
Reviewed by:	bde
1996-07-04 04:36:56 +00:00
Bill Paul
93b1ab3da1 Add checks for byte order and DB type mismatches. We ignore the
filename argument for now: it's really only useful for .dir/.pag-style
ndbm databases, which we don't support anyway.
1996-07-04 02:29:54 +00:00
Bill Paul
78acff3281 Fill in new arguments in the ypxfr_getmap structure (byte order,
db type, filename) and check for new failure codes (db mismatch,
endian mismatch).
1996-07-04 02:13:11 +00:00
Bill Paul
74e4b87eb6 There are a few small additions to the protocol to make it
easier to use in mixed environments:

- Add three new members to the request structure:

  - a filename specification
  - a database type specification
  - a system byte prder specification

  These allow the client to ask the server for a particular type of
  database (Berkeley DB hash/btree/recno, GNU GDBM, dbm, ndbm, etc...)
  and get back a meaningful error if the server doesn't support it.
  The byte order spec is needed if the database type is byte order
  sensntive. You don't, for example, want to read an ndbm database
  from a big endian machine on a little endian machine (the ndbm code
  will explode). The filename spec lets the client handle things like
  ndbm which uses two seperate files per database (foo.dir and foo.pag).
  The client can ask for each half, one at a time.

- Add a list of database types and byte order values. Each list has
  a wildcard 'ANY' entry which lets the client ask for whatever the
  server supports. (XFR_ENDIAN_ANY is useful with the Berkeley DB hash
  method for instance, since it isn't byte order sensitive.)

- Add two newserver failure codes: XFR_DB_TYPE_MISMATCH and
  XFR_DB_ENDIAN_MISMATCH. The server uses these to tell the client
  that it doesn't support the requested type/byte order.

These changes were made at the suggestion of Thorsten Kukuk, the
current maintainer of the Linux ypserv distribution. This allows
Linux and FreeBSD NIS servers to use the same ypxfrd protocol and
avoid accidentally exchanging incompatible map files.
1996-07-04 02:08:17 +00:00
Jordan K. Hubbard
930ee1b46f Make some items "hot" that should be, eliminate typos and macro expansion
bogons.
1996-07-04 01:44:33 +00:00
Jordan K. Hubbard
89689cf8c9 Implement an ftpVerbose() hook.
Submitted by: jmz
1996-07-04 00:55:21 +00:00
Mike Pritchard
41aa7251bb Link the pcvt.4 man page to vt.4 so that anyone examining
their kernel configuration file can do "man vt" and get
what they expect.
1996-07-04 00:42:09 +00:00
Mike Pritchard
8a4f648f82 Update the pppd(8) man page to exmplain the CHAP acronym
to the same way that the RFC does.

Obtained from: NetBSD-bugs mailing list
1996-07-03 23:23:03 +00:00
Wolfram Schneider
e9387c7d7c little manual extension
Submitted by: jhs & wosch
1996-07-03 22:30:53 +00:00
Wolfram Schneider
87c75898fe use <htmlur> for ftp address 1996-07-03 22:24:52 +00:00
Wolfram Schneider
5df3108f6a add a reference to killall(1) 1996-07-03 22:19:50 +00:00
Mike Pritchard
3b818f3a1f The default swap device is /dev/drum, not /dev/swap
as ps.1 states.

Submitted by:	Zahemszhky Gabor <zgabor@code.hu>
1996-07-03 22:17:28 +00:00
Gary Palmer
21496d485b Fix typo.
Submitted by:	Philippe Charnier <charnier@xp11.frmug.org>
1996-07-03 22:06:12 +00:00
Martin Renters
ca7c8034d2 Check if username is a NULL pointer before dereferencing it. 1996-07-03 21:43:48 +00:00
John Fieber
a3341c6330 Three little tweaks make this work, so put it back in. 1996-07-03 21:22:16 +00:00
Poul-Henning Kamp
0d3f1a2a53 Isolated all the crap for thread-safe so I can see what goes on again... 1996-07-03 05:03:07 +00:00
Mike Pritchard
2388ee9a46 Some grammer/typo fixes. I also added some additional sgml
formatting as phk suggested I might want to do.
1996-07-03 04:23:26 +00:00
Poul-Henning Kamp
41e4eb70b4 Comment out rootdev & rrootdev so a ls -l doesn't panic the machine. 1996-07-03 03:48:46 +00:00
Mike Pritchard
dc987e4d24 Update the FILES section to reflect the actual range
of ptys that are available.

Submitted by:	Matthew N. Dodd
1996-07-03 03:07:03 +00:00
Mike Pritchard
e9c032def8 Describe the "file pointer" in lseeks' man page a bit better
so that it is less likely someone will confuse it with a
"FILE *" type pointer.

Submitted by:	Based on James Raynard's patch
1996-07-03 02:55:10 +00:00
Mike Pritchard
8ae7d6b0cb Document the "sig" function parameter.
Submitted by:	James Raynard
1996-07-03 02:44:04 +00:00
Mike Pritchard
9ef62d7c38 Document how chat logis it information via syslog.
Submitted by:	Partially based on a patch by Mark Diekhans
1996-07-03 02:27:30 +00:00
Mike Pritchard
d19eed81d4 Document the -i backward compatibility option (same as -v).
Submitted by:	Faried Nawaz
1996-07-03 02:11:39 +00:00
Jordan K. Hubbard
2ea241a943 Revert this document - it didn't build (I should have checked) and I don't
have time to mess with it right now.
1996-07-03 01:40:29 +00:00
Mike Pritchard
157f653e98 Fix some minor formatting problems in some examples.
Obtained from:  Partially obtained from NetBSD-bugs mailing list
1996-07-03 01:28:34 +00:00
Mike Pritchard
e830e7f5fe Document login's use of /etc/login.access.
Submitted by:	David E. O'Brien
1996-07-03 01:20:09 +00:00
Jordan K. Hubbard
d009678316 Only print the selected timezone in verification rather than the bogus time. 1996-07-03 01:17:34 +00:00
Jordan K. Hubbard
70dd5dab69 Jon Bresler's new hardware guide.
Submitted by:	jmb
1996-07-03 00:42:40 +00:00
Wolfram Schneider
a7258e9fe6 Print a warning before starting dialog(1) if the user
has no write access to /dev/speaker or the speaker device is not
enabled in kernel.

Code cleanup.
1996-07-02 23:35:21 +00:00
Wolfram Schneider
b23472acb2 Document that suid wrapper like suidperl(1) break option 'nosuid'. 1996-07-02 23:18:38 +00:00
Wolfram Schneider
f50830ff75 Add little ISDN section
Submitted by:	Hellmuth Michaelis <hm@kts.org>
1996-07-02 23:16:17 +00:00
Wolfram Schneider
c4a87a6a59 update comment for tun*
add comment for snp*
1996-07-02 23:11:06 +00:00
Wolfram Schneider
ad7076c992 remove zopen, zopen is not part of libc. 1996-07-02 23:04:50 +00:00
Wolfram Schneider
bb9656377b install fast version of zgrep 1996-07-02 23:01:01 +00:00
Mike Pritchard
6afc6d802b Fix a typo. 1996-07-02 21:53:54 +00:00
John Dyson
688bbd5b76 Implement locking for pfs nodes, when at the leaf. Concurrent access
to information from a single process causes hangs.  Specifically, this
fixes problems (hangs) with concurrent ps commands, when the system is under
heavy memory load.
Reviewed by:	davidg
1996-07-02 13:38:10 +00:00
Jordan K. Hubbard
dd74699f76 Untabify. 1996-07-02 10:59:26 +00:00
Jordan K. Hubbard
fdc0e7826c Document shortcuts.
Fix a bug which prevented variables from working properly
1996-07-02 10:57:58 +00:00
Jordan K. Hubbard
9accf5ed92 Add an extra /etc/hosts entry per advice of Joerg. 1996-07-02 09:12:34 +00:00
Gary Clark II
d7583666a0 Make a small change to make a passage sound better. 1996-07-02 08:42:03 +00:00
John Dyson
a6e6bcc5f4 Properly set the PG_MAPPED and PG_WRITEABLE flags. This fixes some potential
problems with vm_map_remove/vm_map_delete.
1996-07-02 02:08:02 +00:00
Jean-Marc Zucconi
144e75837e Use read(fileno(fp), ...) instead of fread(..., fp) to avoid buffered input. 1996-07-02 01:49:47 +00:00
John Dyson
c6c4b08e59 Fix a serious problem, with a window where an object lock is needed,
but not there.  The extent of the object lock is expanded to be over the
range that it is needed.  Additionally, clean up the code so that it conforms
to better coding style.
1996-07-02 01:40:52 +00:00
Jordan K. Hubbard
73410b698a Round out the examples a little better in showing custom buttons in operation
more than once.
1996-07-02 01:03:56 +00:00
Jordan K. Hubbard
3b307053cb Make it plainer how to exit. 1996-07-02 01:03:55 +00:00
Alexander Langer
f8cc1596e7 Correct definition of 'established' keyword. 1996-07-02 00:29:22 +00:00
Jordan K. Hubbard
c4d74c02f2 Put back the $PWD override behavior of revision 1.4. The concensus
*seems* to be that it was the right thing to do.
1996-07-01 22:55:57 +00:00
Jordan K. Hubbard
1b83dffc37 Update the commiter list.
Suggested-By: wosch
1996-07-01 22:04:18 +00:00