PERFORCE change 70045 for review

Robert Watson rwatson at FreeBSD.org
Mon Jan 31 17:55:06 GMT 2005


http://perforce.freebsd.org/chv.cgi?CH=70045

Change 70045 by rwatson at rwatson_tislabs on 2005/01/31 17:54:31

	Import DSEP drop 5, a forward port of the SEDarwin work from Darwin
	10.2.8 to 10.3.3 with substantial enhancements brought in from
	FreeBSD, as well as separately developed.  Includes some interesting
	things that we should merge to FreeBSD, including integration of the
	Darwin audit code and TrustedBSD MAC Framework (experimental), and
	various other things, including stack tracing and IPC tracing MAC
	Framework modules, extensions to the mac_test module, support for
	Mach IPC, etc.
	
	I have not imported the majority of the docs and testbed trees at
	this time, just the base source.  Exercept from the drop-5 release
	notes follows:
	
	Port of TrustedBSD MAC Framework to Darwin 10.3.3
	
	McAfee Research
	15204 Omega Drive, Suite 300
	Rockville, MD 20850
	
	
	Introduction
	============
	
	This release includes a port of the TrustedBSD MAC Framework to
	Apple's Darwin 7.3 (Mac OS X 10.3.3) operating system, made up of
	kernel, library, and user space tool extensions to support flexible
	policy introduction.  In addition, several sample policy modules ar
	present:
	
	    - SEDarwin, a port of NSA's FLASK security architecture and
	      Type Enforcement policy language from SELinux.
	    - MLS, a simple implementation of multi-level security.
	    - ipctrace, a facility for collecting information on the use of
	      Mach IPC.
	    - mac_none, an example of a very minimal policy 
	    - mac_stub, an example of a policy that defines all entry points
	      a no-op
	    - mac_test, a debugging tool for ensuring that the framework is
	      managing labels correctly.
	    - stacktrace, a debugging tool to capture stack traces
	
	This release is a development snapshot; not all components are
	appropriate for use in production environments.
	
	The following modifications have been made relative to Apple's Darwin
	10.3.3 release:
	
	    - HFS extended attributes to hold persistent file labels.
	    - Inclusion of a subset of the MAC Framework entry points to
	      provide label support and protection of files, processes,
	      System V semaphores and shared memory, and labeling and
	      controls for Mach IPC.
	    - A port and enhancement of the mac_test policy module.
	    - The SEDarwin module, a port of the SELinux FLASK and Type
	      Enforcement implementation from FreeBSD.
	    - Ports of the SELinux policy tools for use with SEDarwin.
	    - Ports of the TrustedBSD MAC label management tools and extended
	      attribute tools.
	    - A port of the TrustedBSD MLS policy module.
	    - Modifications to the ls(1) and ps(1) commands to optionally
	      display label information.
	    - Enhancements to the BootX boot loader and XNU kernel extension
	      linker to support the loading of policy KEXTs earlier in the
	      boot sequence.
	
	
	New Features in Drop 5
	======================
	
	    - Additional maturing in VFS security.  This includes new security
	      controls for mmap operations, better support for file descriptor
	      label system calls, and a bugfix for the link entry point.
	
	    - Improved audit support.  The extended attribute and security
	      system calls may are now audited.  The MLS policy was further
	      extended to provide audit support to log permitted and denied
	      access.
	
	    - Build improvements to move some BSD-style Makefiles to GNU, with
	      the intent that the build system use consistently uses only the
	      GNU format.
	
	    - Additional documentation on the test framework and on CMW-like
	      access controls for Apple OS X is nearly complete and will be
	      separately shipped.
	
	
	New Features in Drop 4
	======================
	
	    - The default module is now the mac_mls module, not the sedarwin
	      module.  By default, all modules will be built, but only the MLS
	      module will be installed.
	
	    - Additional example policies
	      The 'mac_none' policy module implements a sample MAC policy that
	      has no effect on access control in the system.  Unlike
	      'mac_stub', none of the MAC entry points are defined.
	
	      The 'mac_stub' policy module implements a sample MAC policy that
	      has no effect on access control in the system.  Unlike mac_none,
	      each MAC entry point is defined as a no-op, so the policy module
	      will be entered for each event, but no change in system behavior
	      should result.
	
	    - Stacktrace security module
	      The stacktrace security module is provided as an example of a
	      policy module useful for debugging.  Loading the policy module
	      and then performing normal operations will cause the stacktrace
	      module's functions to be invoked at each MAC check.  When each
	      function is invoked, it walks backward up the call stack and
	      saves a trace of how the function was called into a wired trace
	      buffer in the kernel.
	
	      An example of the output generated by this module is provided in
	      examples/stacktrace.
	
	    - Add the 'top' package to the build, it directly references
	      kernel objects that were modified by the MAC framework, so it
	      must be recompiled.
	
	    - The System V IPC entry points were renamed from *ipc* to *sysv*
	      to help distinguish System V IPC entry points from other IPC
	      objects (Posix, Mach).
	
	    - Audit prototype
	      This release includes a prototype of the integration of audit
	      support into the Darwin MAC framework.  This prototype introduces
	      controls on kernel audit functions and provides interfaces so
	      that security policies may add information to the audit log.
	
	    - There have been other miscellaneous improvements to the build
	      infrastructure, the test framework, and the entry point coverage
	      and accuracy.
	
	
	New Features in Drop 3
	======================
	
	    - Mach IPC tracing facility - The 'ipctrace' policy module causes
	      the system to store a log of how IPC is used in Darwin. More
	      information on ipctrace can be found in docs/ipctrace.txt.
	      Some example results are also included in examples/ipctrace.
	
	    - System V IPC controls and labelling - Darwin's implementation of
	      System V shared memory and semaphore arrays was extended to
	      include security labels and security framework hooks for policy
	      modules to implement controls on SysV IPC. (Darwin does not
	      support System V message queues.)
	
	    - Updates to SEDarwin - The SEDarwin policy module was extended to
	      support System V IPC security.  The supplied policy permits IPC
	      only between programs running in the same domain.  More
	      information on the sedarwin module is available in
	      docs/sedarwin.txt.
	
	    - MLS (Multi-Level Security) policy module - We have ported the
	      TrustedBSD MLS policy module to the Darwin security
	      framework.  More information on the macmls module is available
	      in docs/macmls.txt.
	
	    - Updates to the mactest policy module - We have made improvements
	      to the mactest module so that it now supports additional entry
	      points and has improved tracking of label states.
	
	    - A prototype test suite for the Darwin MAC Framework was added.
	      More information on installing and running the test suite is
	      available in testbed/README.
	
	    - Updates to framework to match recent changes in the FreeBSD
	      implementation. Most notably, the way security labels are
	      allocated has been made simpler.
	
	
	New Features in Drop 2
	======================
	
	    - Tree and build system rearrangement.  The source tree has been
	      rearranged to better reflect system packaging and development.
	      Modifications to Apple's Darwin operating system are now in the
	      darwin/ sub-tree, and policy modules and policy-related tools
	      are in their own directories.  The consistent of the build
	      system has been improved, and the build is now stand-alone (the
	      additional /usr/local tarball is no longer required.)
	
	    - Policies may now be loaded as kernel extensions.  We have
	      modified the kernel linker to allow policy modules to be loaded
	      sufficiently early that policies must no longer be linked
	      directly to the kernel, permitting them to be distributed
	      separately from XNU.  This required reordering some events in
	      the boot sequence, and introducing additional linker code to use
	      loader-allocated memory.
	
	    - The mac_test module has been updated and enhanced.  The mac_test
	      policy module performs a series of assertions to verify correct
	      behavior of a number of aspects of the TrustedBSD MAC Framework.
	      The module has been ported to Darwin, and enhanced to detect
	      additional failure modes.
	
	    - In addition, a large number of bug fixes and minor enhancements
	      have been made to improve the isolation of policy-independent
	      and policy-specific components.

Affected files ...

.. //depot/projects/trustedbsd/dsep/ERRATA#1 add
.. //depot/projects/trustedbsd/dsep/README#1 add
.. //depot/projects/trustedbsd/dsep/VERSION#1 add
.. //depot/projects/trustedbsd/dsep/examples/audit/audit_test.c#1 add
.. //depot/projects/trustedbsd/dsep/examples/audit/audit_test.txt#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/SAMPLES#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/sample-less.dot#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/sample-less.pdf#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/sample.color#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/sample.dot#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/sample.noki#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/sample.pdf#1 add
.. //depot/projects/trustedbsd/dsep/examples/ipctrace/sample.trace#1 add
.. //depot/projects/trustedbsd/dsep/examples/mac_mls/README#1 add
.. //depot/projects/trustedbsd/dsep/examples/mac_mls/mlstest.sh#1 add
.. //depot/projects/trustedbsd/dsep/examples/stacktrace/README#1 add
.. //depot/projects/trustedbsd/dsep/examples/stacktrace/check_port_send.dot#1 add
.. //depot/projects/trustedbsd/dsep/examples/stacktrace/f5psc.dot#1 add
.. //depot/projects/trustedbsd/dsep/examples/stacktrace/readtrace.pl#1 add
.. //depot/projects/trustedbsd/dsep/examples/stacktrace/transformdot.pl#1 add
.. //depot/projects/trustedbsd/dsep/src/Makeconfig.in#1 add
.. //depot/projects/trustedbsd/dsep/src/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/bootinfo.hdr#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/Control2.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/MAC-PARTS.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/ci.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/ci_io.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/ci.subproj/sl_words.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/CaseTables.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/HFSCompare.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/cache.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ext2fs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ext2fs.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ext2fs_bswap.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ext2fs_dinode.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ext2fs_dir.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/fs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/hfs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/net.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ufs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ufs_byteorder.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/fs.subproj/ufs_byteorder.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/boot_args.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/ci.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/device_tree.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/fs.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/libclite.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/sl.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/include.subproj/sl_words.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/bsearch.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/bswap.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/mem.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/prf.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/printf.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/sprintf.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/string.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/strtol.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/libclite.subproj/zalloc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/appleboot.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/clut.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/device_tree.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/display.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/drivers.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/elf.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/elf.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/failedboot.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/lzss.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/macho.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/main.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/bootx.tproj/sl.subproj/netboot.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/fcode-to-c.tproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/fcode-to-c.tproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/fcode-to-c.tproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/fcode-to-c.tproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/fcode-to-c.tproj/fcode-to-c.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/macho-to-xcoff.tproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/macho-to-xcoff.tproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/macho-to-xcoff.tproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/macho-to-xcoff.tproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/BootX/macho-to-xcoff.tproj/macho-to-xcoff.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/gethnamaddr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/getnetbyaddr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/getnetbyname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/getnetent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/getnetnamadr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/herror.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/inet.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/nameser8_compat.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/options.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/portability.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/res_comp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/res_data.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/res_debug.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/res_init.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/res_mkquery.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/res_query.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/res_send.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/resolv8_compat.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/dns.subproj/sethostent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/aliasdb.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/ether_addr.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/ether_addr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/fstab.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getgrent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/gethostbyname.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getifaddrs.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getifaddrs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getipnodebyname.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getnetent.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getproto.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getprotoent.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getprotoent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getprotoname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getpwent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getservbyname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getservbyport.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getservent.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/getservent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/if_indextoname.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/if_indextoname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/if_nameindex.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/if_nametoindex.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/ifaddrs.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/inet6_option_space.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/inet6_rthdr_space.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/inet_ntop.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/inet_pton.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/initgroups.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/ip6opt.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/map_v4v6.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/printerdb.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/rthdr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/gen.subproj/vars.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/_lu_types.x#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/aliasdb.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/bootparams.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/getaddrinfo.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/getaddrinfo.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/getnameinfo.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lookup.defs#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lookup_types.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_alias.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_bootp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_bootparam.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_fstab.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_group.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_host.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_host.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_host_async.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_netgroup.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_network.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_overrides.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_printer.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_protocol.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_rpc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_service.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_user.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_utils.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/lu_utils.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/netdb.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/netdb_async.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/netgr.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/lookup.subproj/printerdb.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/DNSServiceDiscovery.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/DNSServiceDiscovery.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/DNSServiceDiscoveryDefines.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/DNSServiceDiscoveryReply.defs#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/DNSServiceDiscoveryRequest.defs#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/dns_sd.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/dnssd_clientstub.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/dnssd_ipc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/mdns.subproj/dnssd_ipc.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/clib.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/mm.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/multi_call.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/netinfo.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/netinfo.5#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni_error.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni_glue.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni_prot.x#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni_pwdomain.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni_useful.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni_util.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/ni_util.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/nibind_prot.x#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/sys_interfaces.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/netinfo.subproj/sys_interfaces.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/getdomainname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/getnetgrent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/innetgr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/setdomainname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_domainname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_keydat.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_mapname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_peername.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_valdat.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypbind_binding.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypbind_resp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypbind_resptype.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypbind_setdom.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypmaplist.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypreq_key.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypreq_nokey.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypresp_all.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypresp_key_val.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypresp_maplist.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypresp_master.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypresp_order.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypresp_val.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/xdr_ypstat.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_all.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_all.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_bind.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_bind.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_first.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_first.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_get_default_domain.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_get_default_domain.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_maplist.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_master.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_master.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_match.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_next.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_order.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_order.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_prot.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yp_unbind.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/ypclnt.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/ypclnt.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yperr_string.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yperr_string.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/ypinternal.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/ypmatch_cache.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/yppasswdd_xdr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/ypprot_err.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/nis.subproj/ypprot_err.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/auth.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/auth_none.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/auth_unix.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/auth_unix.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/authunix_prot.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/bindresvport.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/clnt.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/clnt_generic.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/clnt_perror.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/clnt_raw.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/clnt_simple.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/clnt_tcp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/clnt_udp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/get_myaddress.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/getrpcent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/getrpcport.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_clnt.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_clnt.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_getmaps.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_getport.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_prot.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_prot.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_prot2.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_rmt.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/pmap_rmt.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/rpc.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/rpc_callmsg.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/rpc_commondata.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/rpc_dtablesize.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/rpc_msg.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/rpc_prot.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_auth.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_auth.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_auth_unix.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_raw.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_run.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_simple.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_tcp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/svc_udp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/types.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr_array.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr_float.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr_mem.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr_rec.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr_reference.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/rpc.subproj/xdr_stdio.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/glob.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/hosts.equiv.5#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/hton.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/putpwpasswd.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/pwcache.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/rcmd.3#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/rcmd.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libinfo/util.subproj/rcmdsh.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/NXLogError.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/defs.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/except.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/file_funcs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/globals.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/indir_ops.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/ipc_funcs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/memory_funcs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/streams.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/streams.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/streams_doprnt.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/streams_doscan.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/streams_internal.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/streamsextra.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Libstreams/streamsimpl.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/ar.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/dpkg/control#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/CREDITS#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ChangeLog#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/INSTALL#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/LICENCE#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/Makefile.in#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/OVERVIEW#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/README#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/README.privsep#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/README.smartcard#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/RFC.nroff#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/TODO#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/WARNING.RNG#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/acconfig.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/aclocal.m4#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/atomicio.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/atomicio.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-bsdauth.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-chall.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-krb4.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-krb5.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-options.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-options.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-pam.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-pam.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-passwd.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-rh-rsa.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-rhosts.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-rsa.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-sia.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-sia.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth-skey.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth1.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-chall.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-gss.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-hostbased.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-kbdint.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-none.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-pam.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-pam.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-passwd.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2-pubkey.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/auth2.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/authfd.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/authfd.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/authfile.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/authfile.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/autom4te-2.53.cache/output.0#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/autom4te-2.53.cache/requests#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/autom4te-2.53.cache/traces.0#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/bufaux.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/bufaux.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/buffer.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/buffer.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/canohost.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/canohost.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/channels.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/channels.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/cipher.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/cipher.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/clientloop.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/clientloop.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/compat.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/compat.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/compress.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/compress.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/config.guess#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/config.h.in#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/config.sub#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/configure#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/configure.ac#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/README#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/aix/README#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/aix/buildbff.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/aix/inventory.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/caldera/openssh.spec#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/caldera/ssh-host-keygen#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/caldera/sshd.init#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/caldera/sshd.pam#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/cygwin/README#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/cygwin/ssh-host-config#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/cygwin/ssh-user-config#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/gnome-ssh-askpass1.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/gnome-ssh-askpass2.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/hpux/README#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/hpux/egd#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/hpux/egd.rc#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/hpux/sshd#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/hpux/sshd.rc#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/redhat/gnome-ssh-askpass.csh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/redhat/gnome-ssh-askpass.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/redhat/openssh.spec#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/redhat/sshd.init#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/redhat/sshd.init.old#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/redhat/sshd.pam#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/redhat/sshd.pam.old#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/solaris/README#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/solaris/buildpkg.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/solaris/opensshd.in#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/ssh-copy-id#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/ssh-copy-id.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/sshd.pam.freebsd#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/sshd.pam.generic#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/suse/openssh.spec#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/suse/rc.config.sshd#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/contrib/suse/rc.sshd#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/crc32.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/crc32.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/deattack.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/deattack.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/defines.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/dh.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/dh.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/dispatch.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/dispatch.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/entropy.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/entropy.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/fatal.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/fixpaths#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/fixprogs#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/getput.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/groupaccess.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/groupaccess.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/gss-genr.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/gss-serv-gsi.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/gss-serv-krb5.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/gss-serv.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/hostfile.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/hostfile.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/includes.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/install-sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kex.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kex.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexdh.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexdhc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexdhs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexgex.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexgexc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexgexs.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexgssc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/kexgsss.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/key.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/key.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/log.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/log.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/loginrec.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/loginrec.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/logintest.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/mac.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/mac.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/makegssname.pl#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/match.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/match.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/md5crypt.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/md5crypt.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/mdoc2man.pl#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/misc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/misc.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/mkinstalldirs#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/moduli#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor_fdpass.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor_fdpass.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor_mm.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor_mm.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor_wrap.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/monitor_wrap.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/mpaux.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/mpaux.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/msg.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/msg.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/myproposal.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/nchan.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/nchan.ms#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/nchan2.ms#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/Makefile.in#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/base64.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/base64.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/basename.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/basename.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bindresvport.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bindresvport.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-arc4random.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-arc4random.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-cray.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-cray.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-cygwin_util.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-cygwin_util.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-getpeereid.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-getpeereid.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-misc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-misc.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-nextstep.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-nextstep.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-snprintf.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-snprintf.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-waitpid.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/bsd-waitpid.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/daemon.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/daemon.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/dirname.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/dirname.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/fake-gai-errnos.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/fake-getaddrinfo.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/fake-getaddrinfo.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/fake-getnameinfo.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/fake-getnameinfo.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/fake-socket.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/getcwd.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/getcwd.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/getgrouplist.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/getgrouplist.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/getopt.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/getopt.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/glob.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/glob.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/inet_aton.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/inet_aton.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/inet_ntoa.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/inet_ntoa.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/inet_ntop.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/inet_ntop.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/mktemp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/mktemp.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/openbsd-compat.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/port-aix.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/port-aix.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/port-irix.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/port-irix.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/readpassphrase.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/readpassphrase.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/realpath.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/realpath.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/rresvport.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/rresvport.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/setenv.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/setenv.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/setproctitle.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/setproctitle.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/sigact.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/sigact.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strlcat.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strlcat.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strlcpy.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strlcpy.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strmode.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strmode.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strsep.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/strsep.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/sys-queue.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/sys-tree.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/vis.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/vis.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/xmmap.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/openbsd-compat/xmmap.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/packet.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/packet.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/pathnames.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/progressmeter.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/progressmeter.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/radix.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/radix.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/readconf.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/readconf.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/readpass.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/readpass.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/agent-getpeereid.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/agent-ptrace.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/agent-timeout.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/agent.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/authorized_keys_root#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/broken-pipe.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/bsd.regress.mk#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/connect-privsep.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/connect.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/copy.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/copy.2#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/dsa_ssh2.prv#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/dsa_ssh2.pub#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/exit-status.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/forwarding.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/keygen-change.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/keyscan.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/proto-mismatch.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/proto-version.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/proxy-connect.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/rsa_openssh.prv#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/rsa_openssh.pub#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/rsa_ssh2.prv#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/runtests.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/sftp-batch.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/sftp-cmds.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/sftp.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/ssh-com-client.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/ssh-com-keygen.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/ssh-com-sftp.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/ssh-com.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/stderr-after-eof.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/stderr-data.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/t4.ok#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/t5.ok#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/test-exec.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/transfer.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/try-ciphers.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/regress/yes-head.sh#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/rijndael.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/rijndael.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/rsa.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/rsa.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scard-opensc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scard.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scard.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scard/Makefile.in#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scard/Ssh.bin#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scard/Ssh.bin.uu#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scard/Ssh.java#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scp.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/scp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/servconf.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/servconf.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/serverloop.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/serverloop.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/session.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/session.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-client.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-client.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-common.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-common.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-glob.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-glob.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-int.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-int.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-server.8#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp-server.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sftp.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-add.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-add.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-agent.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-agent.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-dss.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-gss.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-keygen.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-keygen.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-keyscan.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-keyscan.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-keysign.8#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-keysign.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-rand-helper.8#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-rand-helper.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh-rsa.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh1.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh2.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh_config#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh_config.5#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ssh_prng_cmds.in#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshconnect.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshconnect.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshconnect1.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshconnect2.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshd.8#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshd.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshd_config#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshd_config.5#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshlogin.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshlogin.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshpty.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshpty.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshtty.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/sshtty.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/tildexpand.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/tildexpand.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ttymodes.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/ttymodes.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/uidswap.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/uidswap.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/uuencode.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/uuencode.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/version.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/xmalloc.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/openssh/xmalloc.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/ssh-via-xinetd#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/OpenSSH/sshd-keygen-wrapper#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/Makefile.include#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/adv_cmds.rtf#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/cap_mkdb.tproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/cap_mkdb.tproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/cap_mkdb.tproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/cap_mkdb.tproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/cap_mkdb.tproj/cap_mkdb.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/cap_mkdb.tproj/cap_mkdb.c#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/Makefile#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/Makefile.postamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/Makefile.preamble#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/PB.project#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/colldef.1#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/common.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/fbsdcompat.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/locale/collate.h#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/parse.y#1 add
.. //depot/projects/trustedbsd/dsep/src/darwin/adv_cmds/colldef.tproj/scan.l#1 add

>>> TRUNCATED FOR MAIL (1000 lines) <<<
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message



More information about the trustedbsd-cvs mailing list