Searched hist:1996 (Results 226 - 250 of 3325) sorted by relevance

1234567891011>>

/freebsd-11.0-release/share/man/man9/
H A Dintro.9diff 20937 Thu Dec 26 22:50:43 MST 1996 mpp Spelling police.
diff 20243 Mon Dec 09 07:45:59 MST 1996 mpp Minor formatting/style fixes.

Submitted by: Sandro Sigala <sandro@cat.local.net> as part of PR # 2134
diff 17760 Wed Aug 21 21:43:28 MDT 1996 mpp Use the .Fx macro to reference FreeBSD versions in several newer man
pages.

For those of you that don't know, here is an example of how the .Fx
macro is used:

The xyzzy command first appeared in
.Fx 2.2 .

Will expand to:

The xyzzy command first appeared in FreeBSD 2.2.
diff 13744 Tue Jan 30 13:52:50 MST 1996 mpp Fix a bunch of spelling errors in a bunch of man pages.
/freebsd-11.0-release/usr.bin/calendar/
H A Dpaskha.cdiff 15737 Sat May 11 20:44:21 MDT 1996 ache Includes cleanup
Submitted by: bde
diff 15723 Fri May 10 19:31:02 MDT 1996 ache Localize even more.
FIx Orthodox Easter calculation
Better debug output
diff 15720 Fri May 10 17:32:06 MDT 1996 ache Allow to configure national Easter names.
Speedup my national months/days handling code.
15714 Fri May 10 16:30:22 MDT 1996 ache Localize it
Handle Orthodox Eastern
-Wall cleanup
/freebsd-11.0-release/usr.bin/colldef/
H A Dscan.ldiff 18955 Wed Oct 16 03:12:22 MDT 1996 ache Simplify and improve parser.
Clarify manpage.
diff 18950 Tue Oct 15 22:05:18 MDT 1996 ache Save half of LC_COLLATE space
ASCIIfy data files, use RFC1345 symbolic names instead of hex codes
Improve parser and manpage
diff 16073 Sun Jun 02 17:22:01 MDT 1996 phk Backout yacc changes.
diff 16020 Thu May 30 23:03:00 MDT 1996 phk yacc changes.
/freebsd-11.0-release/share/man/man4/
H A Difmib.4diff 20920 Thu Dec 26 16:16:37 MST 1996 wosch Sort cross references.
diff 20604 Tue Dec 17 20:23:34 MST 1996 wollman Add cross-references to ifnet(9).
diff 20243 Mon Dec 09 07:45:59 MST 1996 mpp Minor formatting/style fixes.

Submitted by: Sandro Sigala <sandro@cat.local.net> as part of PR # 2134
19796 Fri Nov 15 19:49:41 MST 1996 wollman Start to document how the interface MIB stuff is supposed to work.
/freebsd-11.0-release/tools/tools/ifinfo/
H A Drfc1650.c18870 Fri Oct 11 15:56:41 MDT 1996 wollman Add my little `ifinfo' program. This is sort of a cross between a
diagnostic program for debugging the interface MIB and an example of
how to use same. Someday, netstat should be updated to print this
information in a prettier form.
/freebsd-11.0-release/usr.bin/locate/locate/
H A DMakefilediff 17991 Sun Sep 01 16:03:28 MDT 1996 wosch Fix to work with obj directories: -I. -> -I${.CURDIR}
Submitted by: Bruce
diff 17980 Sat Aug 31 23:14:54 MDT 1996 wosch optimized search algorithm
faster IO due mmap(2) [-m | -s]
better error check for damaged databases
support for databases in network byte order (SunOS/sparc)
optional case insensitve search [-i]
optional multiple databases
optional multiple pattern
new enviroment variable LOCATE_PATH for database(s)
[-S] print some statistic about the database
[-l number] limit output to number file names
[-c] suppress normal output; instead print a count of matching file names
diff 17592 Wed Aug 14 00:22:31 MDT 1996 wosch bigram
Bigram does not remove newline at end of filename. This
break particulary the bigram algorithm and /var/db/locate.database
grow up 15 %.

Bigram does not check for characters outside 32-127.

The bigram output is silly and need ~1/2 CPU time of
database rebuilding.

old:
locate.bigram < $filelist | sort | uniq -c | sort -nr
^^^^^^^^^^^^^^
this can easy made bigram

new:
bigram < $filelist | sort -nr

code
Code does not check for char 31.
Use a lookup array instead a function. 3 x faster.

updatedb
rewritten
sync with bigram changes

read config file /etc/locate.rc if exists
submitted by: guido@gvr.win.tue.nl (Guido van Rooij)

concatdb - concatenate locate databases
mklocatedb - build locate database
diff 14034 Sun Feb 11 18:54:39 MST 1996 mpp Added a small man page for locate.updatedb(8).
/freebsd-11.0-release/usr.bin/tail/
H A Dread.cdiff 17826 Sun Aug 25 21:14:19 MDT 1996 peter Dont forget to #include <err.h>
diff 17825 Sun Aug 25 21:12:01 MDT 1996 peter Argh! caught! *blush*.. This program was supplying it's own 'err' routine
which was slightly different to the libc one. To save any more cunfusion,
use the libc one.
diff 17341 Tue Jul 30 15:44:30 MDT 1996 adam one file somehow slipped by me in the previous commit
tidy up
diff 17339 Tue Jul 30 13:11:43 MDT 1996 adam when file can be opened for read but cannot be read from:
fail once (was twice) in forward case
fail once (was no times) in reverse case

this can happen when file is a directory on an NFS or procfs mount.
/freebsd-11.0-release/usr.bin/talk/
H A Dinit_disp.cdiff 20988 Sat Dec 28 20:44:58 MST 1996 peter Enable idlok() in both windows. This is actually a no-op for libcurses
(which doesn't use the setting at all), but when linking with
recent versions of libncurses, ncurses screws up without it for some reason
(presumably a ncurses bug).
diff 17698 Tue Aug 20 00:31:37 MDT 1996 peter If running under a typical sysv-style curses, including ncurses, use
hline() to draw the window split rather than fudging it with dashes.
This causes the line to be drawn in line-draw characters if the terminal
description has them.

Suggested by: ache
diff 17676 Mon Aug 19 19:42:00 MDT 1996 peter Update some ancient warts in talk:
- use termios, not sgtty
- dont use _putchar(), that was a BSD-curses specific feature not in
other curses packages (such as ncurses)
- use sigaction, not sigvec while I'm there
- box() does different things under sysv/ncurses on 1-line high windows,
and BSD-curses doesn't have hline(), so do it by adding characters
instead. That works on both styles of curses.
diff 14443 Sat Mar 09 19:23:01 MST 1996 joerg Make talk automagically find out the interface IP address where the
remote peer will be connected through. This avoids the ``Checking for
invitation on caller's machine'' problem for multi-homed hosts.

Thanks to: Garrett, for his `find_interface' example
/freebsd-11.0-release/usr.bin/xlint/lint1/
H A Dscan.ldiff 17142 Fri Jul 12 19:08:36 MDT 1996 jkh General -Wall warning cleanup, part I.
Submitted-By: Kent Vander Velden <graphix@iastate.edu>
diff 16073 Sun Jun 02 17:22:01 MDT 1996 phk Backout yacc changes.
diff 16022 Thu May 30 23:09:11 MDT 1996 phk yacc rules change.
diff 15158 Tue Apr 09 17:17:31 MDT 1996 mpp Do not include math.h because it isn't used and it causes
"make world" to fail if you use the msun math library and
blow away /usr/include and then do "make world". This is because
the msun math.h isn't installed with the other include files before
xlint is built. It finally gets installed when the msun library
is built.

Perhaps "make world" should install the msun math.h file if
it doesn't install the CSRG math.h, to prevent problems
like this in the future.
H A Dtree.cdiff 17142 Fri Jul 12 19:08:36 MDT 1996 jkh General -Wall warning cleanup, part I.
Submitted-By: Kent Vander Velden <graphix@iastate.edu>
diff 16073 Sun Jun 02 17:22:01 MDT 1996 phk Backout yacc changes.
diff 16053 Sat Jun 01 13:39:23 MDT 1996 bde Finished yacc rules changes.
diff 15158 Tue Apr 09 17:17:31 MDT 1996 mpp Do not include math.h because it isn't used and it causes
"make world" to fail if you use the msun math library and
blow away /usr/include and then do "make world". This is because
the msun math.h isn't installed with the other include files before
xlint is built. It finally gets installed when the msun library
is built.

Perhaps "make world" should install the msun math.h file if
it doesn't install the CSRG math.h, to prevent problems
like this in the future.
/freebsd-11.0-release/usr.bin/xlint/llib/
H A DMakefilediff 14963 Sun Mar 31 22:18:46 MST 1996 paul Don't build the special case lint libraries.
diff 14799 Sun Mar 24 20:03:46 MST 1996 paul Move llib-lstdc to llib-lc since that's what lint expects.
diff 14797 Sun Mar 24 19:45:58 MST 1996 paul Build and install llib-lstdc.ln. Disable Posix version.
Change install mode from NONBINMODE to LIBMODE
diff 13948 Tue Feb 06 23:36:16 MST 1996 wosch replace 'install' with ${INSTALL}
/freebsd-11.0-release/usr.sbin/pw/
H A Dcpdir.cdiff 20303 Tue Dec 10 23:59:04 MST 1996 joerg This commit was generated by cvs2svn to compensate for changes in r20302,
which included commits to RCS files with non-trunk default branches.
diff 20302 Tue Dec 10 23:59:04 MST 1996 joerg Copyright update by the author, to be more in line with our sample
copyright.

Submitted by: David Nugent
diff 20267 Mon Dec 09 23:55:27 MST 1996 joerg Upgrade from the author, reflecting all my wishes resulting out of the
sysinstall use of this tool (plus some bug fixes).

2.2 candidate...

Submitted by: David Nugent <davidn@nserver.usn.blaze.net.au>
20253 Mon Dec 09 14:05:35 MST 1996 joerg pw(8) -- a backend utility to manage the user and group databases.

sysinstall's new User&group menu will use it, hence it's a 2.2
candidate despite of providing new functionality.

Submitted by: David L. Nugent, <davidn@blaze.net.au>
H A Dpw.conf.5diff 20303 Tue Dec 10 23:59:04 MST 1996 joerg This commit was generated by cvs2svn to compensate for changes in r20302,
which included commits to RCS files with non-trunk default branches.
diff 20302 Tue Dec 10 23:59:04 MST 1996 joerg Copyright update by the author, to be more in line with our sample
copyright.

Submitted by: David Nugent
diff 20267 Mon Dec 09 23:55:27 MST 1996 joerg Upgrade from the author, reflecting all my wishes resulting out of the
sysinstall use of this tool (plus some bug fixes).

2.2 candidate...

Submitted by: David Nugent <davidn@nserver.usn.blaze.net.au>
20253 Mon Dec 09 14:05:35 MST 1996 joerg pw(8) -- a backend utility to manage the user and group databases.

sysinstall's new User&group menu will use it, hence it's a 2.2
candidate despite of providing new functionality.

Submitted by: David L. Nugent, <davidn@blaze.net.au>
/freebsd-11.0-release/usr.sbin/rpc.statd/
H A DMakefilediff 17050 Tue Jul 09 22:40:39 MDT 1996 nate Add sm_inter.h to DPSRCS so that make depend is not required to build
this.
diff 14982 Mon Apr 01 05:36:06 MST 1996 peter Some minor tweaks for statd
- use rpcgen to generate unmodified code instead of havinf it in the
repository
- use "natural" function names to avoid conflicts with prototypes etc.
diff 14126 Sat Feb 17 15:14:59 MST 1996 peter This commit was generated by cvs2svn to compensate for changes in r14125,
which included commits to RCS files with non-trunk default branches.
14125 Sat Feb 17 15:14:59 MST 1996 peter Import Jan 15 version of Andrew Gordon <andrew.gordon@net-tel.co.uk>'s
rpc.statd.

This is apparently fully functional and complete.
/freebsd-11.0-release/contrib/tcpdump/
H A Daddrtoname.h17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dappletalk.h17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dbpf_dump.c17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dconfig.guess17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dconfig.sub17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dospf.h17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dprint-dvmrp.c17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dprint-krb.c17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dprint-tftp.c17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
H A Dstrcasecmp.c17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
/freebsd-11.0-release/contrib/tcpdump/lbl/
H A Dos-solaris2.h17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.
17680 Mon Aug 19 20:34:12 MDT 1996 pst Virgin import of unmodified tcpdump v3.2.1 distribution from LBL.
Obtained from: ftp://ftp.ee.lbl.gov/tcpdump.tar.Z on 19-Aug-1996.

Completed in 415 milliseconds

1234567891011>>