History log of /dragonfly/include/ (Results 501 – 525 of 720)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
b39b2b2710-Mar-2009 Peter Avalos <pavalos@theshell.com>

Sync gethostname() with FreeBSD:

* Change gethostname() to set errno to ENAMETOOLONG instead of ENOMEM
when the buffer is not long enough to hold the current host name.
POSIX does not standardize er

Sync gethostname() with FreeBSD:

* Change gethostname() to set errno to ENAMETOOLONG instead of ENOMEM
when the buffer is not long enough to hold the current host name.
POSIX does not standardize error returns for gethostname(), so it
doesn't matter which one we use, but ENAMETOOLONG is at least a little
more intuitive.

* Update prototype to match SuS (int->size_t).

show more ...

6a7eb1f610-Mar-2009 Peter Avalos <pavalos@theshell.com>

Sync getcap() with FreeBSD:

* Expand contractions and fix sentence breaks.

* In cgetmatch(3), return -1 if a NULL or 0-length name parameter is
used. This prevents lpd from hanging at boot with

Sync getcap() with FreeBSD:

* Expand contractions and fix sentence breaks.

* In cgetmatch(3), return -1 if a NULL or 0-length name parameter is
used. This prevents lpd from hanging at boot with certain (legal)
printcap entries.

* Sprinkle some const.

show more ...

59b616d327-Feb-2009 Peter Avalos <pavalos@theshell.com>

Sync fts(3) with FreeBSD.

Here's some of the relevant commit logs from FreeBSD:

FTSENT now avoids the use of the struct hack, thereby allowing future
extensions to the structure (e.g., for extended

Sync fts(3) with FreeBSD.

Here's some of the relevant commit logs from FreeBSD:

FTSENT now avoids the use of the struct hack, thereby allowing future
extensions to the structure (e.g., for extended attributes) without
rebreaking the ABI. FTSENT now contains a pointer to the parent stream,
which fts_compar() can then take advantage of, avoiding the undefined
behavior previously warned about. As a consequence of this change, the
prototype of the comparison function passed to fts_open() has changed
to reflect the required amount of constness for its use. All callers
in the tree are updated to use the correct prototype.

Comparison functions can now make use of the new parent pointer to
access the new stream-specific private data pointer, which is intended
to assist creation of reentrant library routines which use fts(3)
internally.

The FTS_NOSTAT option is an optimisation that reduces the number
of stat(2) calls by keeping an eye of the number of links a directory
has. It assumes that each subdirectory will have a hard link to its
parent, to represent the ".." node, and stops calling stat(2) when
all links are accounted for in a given directory.

This assumption is really only valid for UNIX-like filesystems: A
concrete example is NTFS. The NTFS "i-node" does contain a link
count, but most/all directories have a link count between 0 and 2
inclusive. The end result is that find on an NTFS volume won't
actually traverse the entire hierarchy of the directories passed
to it. (Those with a link count of two are not traversed at all)

The fix checks the "UFSness" of the filesystem before enabling the
optimisation.

In fts_build(), if we try to chdir and fail (e.g. due to lack of search
permission), try to continue in FTS_DONTCHDIR mode. Of course this
won't work for long paths, but we can't descend more than one pathname
component beyond the directory anyway if we lack search permission.

Our fts(3) API, as inherited from 4.4BSD, suffers from integer
fields in FTS and FTSENT structs being too narrow. In addition,
the narrow types creep from there into fts.c. As a result, fts(3)
consumers, e.g., find(1) or rm(1), can't handle file trees an ordinary
user can create, which can have security implications.

Fix a file descriptor leak.

show more ...

96fea78126-Feb-2009 Peter Avalos <pavalos@theshell.com>

Add getfstab(3) and setfstab(3).

* Use PATH_FSTAB instead of hard-coded value.
* Change function name in dump(8) that was conflicting.

Obtained-from: FreeBSD

037fad3126-Feb-2009 Peter Avalos <pavalos@theshell.com>

Replace frexp(3) with MI code and add a frexpl(3) function to libm.

Obtained-from: FreeBSD

5659670c26-Feb-2009 Peter Avalos <pavalos@theshell.com>

Sync fnmatch(3) with FreeBSD.

* Define FNM_NOSYS iaw SUS.

* Document the missing portions of IEEE Std. 1003.2.

* Add support for multibyte characters.

c4dd129b15-Feb-2009 Peter Avalos <pavalos@theshell.com>

Add posix_spawn() and posix_spawnp().

Also add execvP() which takes the search path as an argument.

Obtained-from: FreeBSD

46c7085513-Feb-2009 Peter Avalos <pavalos@theshell.com>

Sync confstr(3) with FreeBSD:

* Support SUS "programming environment".
* confstr() returns compile-time constants. Don't use sysctl to get
the value of _PATD_STDPATH when we can just get it direc

Sync confstr(3) with FreeBSD:

* Support SUS "programming environment".
* confstr() returns compile-time constants. Don't use sysctl to get
the value of _PATD_STDPATH when we can just get it directly.

show more ...

f7eaf18313-Feb-2009 Peter Avalos <pavalos@theshell.com>

Sync assert with FreeBSD:

* Change __assert() function to print failing function name.

* Make the output from assert() look more like the example in the C99
standard.

12b7196602-Feb-2009 Peter Avalos <pavalos@theshell.com>

Sync lib/net with FreeBSD:

* Add a byteorder.9 manual page.
* Remove the addr2ascii and ascii2addr functions. They aren't used in
the tree, and there's other functions that are more generic and

Sync lib/net with FreeBSD:

* Add a byteorder.9 manual page.
* Remove the addr2ascii and ascii2addr functions. They aren't used in
the tree, and there's other functions that are more generic and
appropriate.
* Fix a few style issues.
* Add and document ether_ntoa_r() and ether_aton_r() functions, which
accept passed storage buffers rather than using static storage.
Reimplement ether_ntoa() and ether_aton() in terms of these functions.
These variants are thread-safe.
* Document that AI_ALL and AI_V4MAPPED flags are currently not supported.
* Add a SIOCGIFINDEX ioctl, which returns the index of a named interface.
Use this ioctl in if_nametoindex(3) to use network aliases.
* Add restrict qualifier where needed.
* Add inet_ntoa_r() - a re-entrant function of inet_ntoa.
* Note that inet6_option_space.3 and inet6_rthdr_space.3 functions are
deprecated in favor of inet6_opt_init.3 and inet6_rth_space.3.
* Remove NS and ISO stuff.
* Sync map_v4v6.c with BIND9.
* Instead of re-implementing hton[ls] and friends for each arch, add a
new MI file, net/ntoh.c, which just implement them using the inline
functions from <sys/endian.h>.
* Fix some namespace issues in <netdb.h>.

show more ...


/dragonfly/Makefile_upgrade.inc
/dragonfly/contrib/bind-9.3/lib/bind/inet/nsap_addr.c
arpa/inet.h
netdb.h
/dragonfly/lib/libc/net/Makefile.inc
/dragonfly/lib/libc/net/byteorder.3
/dragonfly/lib/libc/net/ether_addr.c
/dragonfly/lib/libc/net/ethers.3
/dragonfly/lib/libc/net/eui64.3
/dragonfly/lib/libc/net/getaddrinfo.3
/dragonfly/lib/libc/net/getifaddrs.3
/dragonfly/lib/libc/net/getifaddrs.c
/dragonfly/lib/libc/net/getipnodebyname.3
/dragonfly/lib/libc/net/getnetent.3
/dragonfly/lib/libc/net/getprotoent.3
/dragonfly/lib/libc/net/getservent.3
/dragonfly/lib/libc/net/if_indextoname.3
/dragonfly/lib/libc/net/if_nametoindex.c
/dragonfly/lib/libc/net/inet.3
/dragonfly/lib/libc/net/inet6_option_space.3
/dragonfly/lib/libc/net/inet6_rthdr_space.3
/dragonfly/lib/libc/net/inet_net.3
/dragonfly/lib/libc/net/ip6opt.c
/dragonfly/lib/libc/net/linkaddr.3
/dragonfly/lib/libc/net/linkaddr.c
/dragonfly/lib/libc/net/map_v4v6.c
/dragonfly/lib/libc/net/ntoh.c
/dragonfly/lib/libc/net/rcmd.3
/dragonfly/lib/libc/net/rcmd.c
/dragonfly/lib/libc/net/rcmdsh.3
/dragonfly/lib/libc/net/rcmdsh.c
/dragonfly/lib/libc/net/recv.c
/dragonfly/lib/libc/net/resolver.3
/dragonfly/lib/libc/net/send.c
/dragonfly/lib/libc/net/sockatmark.3
/dragonfly/lib/libc/net/sockatmark.c
/dragonfly/lib/libc/net/vars.c
/dragonfly/lib/libc/quad/adddi3.c
/dragonfly/lib/libc/quad/anddi3.c
/dragonfly/lib/libc/quad/ashldi3.c
/dragonfly/lib/libc/quad/ashrdi3.c
/dragonfly/lib/libc/quad/cmpdi2.c
/dragonfly/lib/libc/quad/divdi3.c
/dragonfly/lib/libc/quad/fixdfdi.c
/dragonfly/lib/libc/quad/fixsfdi.c
/dragonfly/lib/libc/quad/fixunsdfdi.c
/dragonfly/lib/libc/quad/fixunssfdi.c
/dragonfly/lib/libc/quad/floatdidf.c
/dragonfly/lib/libc/quad/floatdisf.c
/dragonfly/lib/libc/quad/floatunsdidf.c
/dragonfly/lib/libc/quad/iordi3.c
/dragonfly/lib/libc/quad/lshldi3.c
/dragonfly/lib/libc/quad/lshrdi3.c
/dragonfly/lib/libc/quad/moddi3.c
/dragonfly/lib/libc/quad/muldi3.c
/dragonfly/lib/libc/quad/negdi2.c
/dragonfly/lib/libc/quad/notdi2.c
/dragonfly/lib/libc/quad/qdivrem.c
/dragonfly/lib/libc/quad/quad.h
/dragonfly/lib/libc/quad/subdi3.c
/dragonfly/lib/libc/quad/ucmpdi2.c
/dragonfly/lib/libc/quad/udivdi3.c
/dragonfly/lib/libc/quad/umoddi3.c
/dragonfly/lib/libc/quad/xordi3.c
/dragonfly/sbin/route/Makefile
/dragonfly/sbin/route/show.c
/dragonfly/share/man/man9/Makefile
/dragonfly/share/man/man9/byteorder.9
/dragonfly/sys/net/ethernet.h
/dragonfly/sys/net/if.c
/dragonfly/sys/net/if.h
/dragonfly/sys/sys/sockio.h
a0bb952727-Jan-2009 Peter Avalos <pavalos@theshell.com>

Sync libc/regex with FreeBSD:

-Make regular expression matching aware of multibyte characters.

-Some WARNS cleanup.

-Only stop evaluation of a back reference if the match length is
zero and the re

Sync libc/regex with FreeBSD:

-Make regular expression matching aware of multibyte characters.

-Some WARNS cleanup.

-Only stop evaluation of a back reference if the match length is
zero and the recursion level is too deep.

-Add restrict type-qualifier.

show more ...

f202adf719-Jan-2009 Peter Avalos <pavalos@theshell.com>

Replace our strtod with the gdtoa package.

Obtained-from: FreeBSD

5d0641a419-Jan-2009 Peter Avalos <pavalos@theshell.com>

Sync libc/stdlib with FreeBSD (ignoring jemalloc, pts, and gdtoa):

-Add a64l(), l64a(), and l64a_r() XSI extentions. These functions
convert between a 32-bit integer and a radix-64 ASCII string.

-

Sync libc/stdlib with FreeBSD (ignoring jemalloc, pts, and gdtoa):

-Add a64l(), l64a(), and l64a_r() XSI extentions. These functions
convert between a 32-bit integer and a radix-64 ASCII string.

-Replace some syscalls with libc version.

-Remove advertising clause.

-alloca() cannot check if the allocation is valid; mention the
consequences.

-Include some verbage about not calling exit() from functions registered
by atexit().

-Use pthread mutexes where possible instead of libc spinlocks.

-Significantly reduce the memory leak as noted in the BUGS section of
setenv(3) by tracking the size of the memory allocated instead of using
strlen() on the current value.

-Prefer setenv() instead of putenv().

-Convert *env() calls to POSIX:
-unsetenv returns an int.
-putenv takes a char * instead of const char *.
-putenv no longer makes a copy of the input string.
-errno is set appropriately. Exceptions involve bad environ
variable and internal initialization code. These both set errno
to EFAULT.

-Make getopt_long() more GNU compatible and sync up with OpenBSD's
version.

-POSIX clearly states that getsubopt() should be declared in <stdlib.h>
not in <unistd.h>

-Use size_t to avoid overflow when sorting arrays larger than 2 GB in
heapsort() and qsort().

-Add new implementations of insque() and remque() which conform to
IEEE Std 1003.1-2001.

-Add qsort_r() for functions that need to be reentrant.

-Improve radixsort()'s preformance when sorting strings with common
prefixes.

-Use 'uint32_t' instead of 'long' when a 32-bit integer is intended in
random(3).

-Rearrange <stdlib.h> in a more logical order based on visibility.

-Move getsubopt()'s prototype to <stdlib.h> (standards).

-Make an internal _getprogname() that is used only inside
libc. For libc, getprogname(3) is a weak symbol in case a
function of the same name is defined in userland.

show more ...


/dragonfly/bin/df/df.c
/dragonfly/bin/sh/var.c
search.h
stdlib.h
unistd.h
/dragonfly/lib/libc/gen/getprogname.c
/dragonfly/lib/libc/include/libc_private.h
/dragonfly/lib/libc/stdlib/Makefile.inc
/dragonfly/lib/libc/stdlib/a64l.3
/dragonfly/lib/libc/stdlib/a64l.c
/dragonfly/lib/libc/stdlib/abort.3
/dragonfly/lib/libc/stdlib/abort.c
/dragonfly/lib/libc/stdlib/abs.3
/dragonfly/lib/libc/stdlib/abs.c
/dragonfly/lib/libc/stdlib/alloca.3
/dragonfly/lib/libc/stdlib/atexit.3
/dragonfly/lib/libc/stdlib/atexit.c
/dragonfly/lib/libc/stdlib/atexit.h
/dragonfly/lib/libc/stdlib/atof.3
/dragonfly/lib/libc/stdlib/atof.c
/dragonfly/lib/libc/stdlib/atoi.3
/dragonfly/lib/libc/stdlib/atoi.c
/dragonfly/lib/libc/stdlib/atol.3
/dragonfly/lib/libc/stdlib/atol.c
/dragonfly/lib/libc/stdlib/bsearch.3
/dragonfly/lib/libc/stdlib/bsearch.c
/dragonfly/lib/libc/stdlib/div.3
/dragonfly/lib/libc/stdlib/div.c
/dragonfly/lib/libc/stdlib/exit.3
/dragonfly/lib/libc/stdlib/exit.c
/dragonfly/lib/libc/stdlib/getenv.3
/dragonfly/lib/libc/stdlib/getenv.c
/dragonfly/lib/libc/stdlib/getopt.3
/dragonfly/lib/libc/stdlib/getopt.c
/dragonfly/lib/libc/stdlib/getopt_long.3
/dragonfly/lib/libc/stdlib/getopt_long.c
/dragonfly/lib/libc/stdlib/getsubopt.3
/dragonfly/lib/libc/stdlib/getsubopt.c
/dragonfly/lib/libc/stdlib/hcreate.3
/dragonfly/lib/libc/stdlib/hcreate.c
/dragonfly/lib/libc/stdlib/heapsort.c
/dragonfly/lib/libc/stdlib/insque.3
/dragonfly/lib/libc/stdlib/insque.c
/dragonfly/lib/libc/stdlib/l64a.c
/dragonfly/lib/libc/stdlib/labs.3
/dragonfly/lib/libc/stdlib/labs.c
/dragonfly/lib/libc/stdlib/ldiv.3
/dragonfly/lib/libc/stdlib/ldiv.c
/dragonfly/lib/libc/stdlib/lsearch.c
/dragonfly/lib/libc/stdlib/malloc.c
/dragonfly/lib/libc/stdlib/memory.3
/dragonfly/lib/libc/stdlib/merge.c
/dragonfly/lib/libc/stdlib/qsort.3
/dragonfly/lib/libc/stdlib/qsort.c
/dragonfly/lib/libc/stdlib/qsort_r.c
/dragonfly/lib/libc/stdlib/radixsort.3
/dragonfly/lib/libc/stdlib/radixsort.c
/dragonfly/lib/libc/stdlib/rand.3
/dragonfly/lib/libc/stdlib/rand.c
/dragonfly/lib/libc/stdlib/random.3
/dragonfly/lib/libc/stdlib/random.c
/dragonfly/lib/libc/stdlib/realpath.3
/dragonfly/lib/libc/stdlib/realpath.c
/dragonfly/lib/libc/stdlib/remque.c
/dragonfly/lib/libc/stdlib/strtol.3
/dragonfly/lib/libc/stdlib/strtoq.c
/dragonfly/lib/libc/stdlib/strtoul.3
/dragonfly/lib/libc/stdlib/strtouq.c
/dragonfly/lib/libc/stdlib/system.3
/dragonfly/lib/libc/stdlib/system.c
/dragonfly/lib/libc/stdlib/tdelete.c
/dragonfly/lib/libc/stdlib/tfind.c
/dragonfly/lib/libc/stdlib/tsearch.3
/dragonfly/lib/libc/stdlib/tsearch.c
/dragonfly/lib/libc/stdlib/twalk.c
/dragonfly/lib/libc/stdtime/localtime.c
/dragonfly/libexec/pppoed/pppoed.c
/dragonfly/usr.bin/du/du.c
/dragonfly/usr.bin/env/env.c
/dragonfly/usr.bin/limits/limits.c
/dragonfly/usr.sbin/pstat/pstat.c
dfcdc86817-Jan-2009 Peter Avalos <pavalos@theshell.com>

Add the restrict qualifier to strftime(3) and strptime(3).

f422879017-Jan-2009 Peter Avalos <pavalos@theshell.com>

Add routines to convert time_t to/from fixed-bit fields.

Obtained-from: FreeBSD

7d013f9716-Jan-2009 Peter Avalos <pavalos@theshell.com>

Remove the timezone() function.

It conflicts with an XSI extension where timezone and daylight are
variables representing:

timezone: the difference, in seconds, between Coordinated Universal
Time

Remove the timezone() function.

It conflicts with an XSI extension where timezone and daylight are
variables representing:

timezone: the difference, in seconds, between Coordinated Universal
Time (UTC) and local standard time.

daylight: set to 0 if Daylight Savings Time conversions should never be
applied for the timezone in use; otherwise, non-zero.

show more ...

716024cd14-Jan-2009 Peter Avalos <pavalos@theshell.com>

Sync lib/libc/string with FreeBSD:

-Move legacy functions to strings.h.

-A few WARNS and style cleanup.

-Add ffsl(), fls(), flsl(), ffsll(), flsll().

-Merge index.3 and rindex.3 since they are so

Sync lib/libc/string with FreeBSD:

-Move legacy functions to strings.h.

-A few WARNS and style cleanup.

-Add ffsl(), fls(), flsl(), ffsll(), flsll().

-Merge index.3 and rindex.3 since they are so similar. Do the same for
strrchr().

-Add memrchr().

-Remove advertising clause from copyrights.

-Add memmem() which is basically the same as strstr().

-Add stpcpy().

-Add a SECURITY CONSIDERATIONS section to remind people about buffer
overflows, etc.

-Add restrict keyword where required.

-Add strndup().

-Correctly document the return value of strerror() and strerror_r() and
the contents of the returned buffer for unknown error codes.

-Add NLS catalogs support to strerror(), strerror_r() and strsignal().
Controlled by NLS define.

-For strl* files, use a less restrictive copyright (original author
changed it).

-strmode.3: strmode does not return 0.

-Move swab()'s prototype to unistd.h IAW SUS.

-Simplify by removing unneeded local variables and explicit
null termination is wcs* functions.

-Move wcscoll() and wcsxfrm() to string/ and do locale-sensitive
collation for single-byte locales.

-Add wcsdup().

-Remove unneeded includes.

-Reimplement wcsrchr(3) more efficiently, using a single forward scan
(like strrchr(3)) instead of scanning forwards to find the end of the
string then scanning backwards to find the character.

-Slightly optimize wcswidth().

-Tell contrib srcs that we have strndup now since some of them provide
their own static definition which will blow up a buildworld.

show more ...


/dragonfly/bin/cpdup/cpdup.1
/dragonfly/bin/cpdup/cpdup.c
/dragonfly/bin/cpdup/misc.c
/dragonfly/bin/sh/histedit.c
/dragonfly/gnu/usr.bin/binutils217/libiberty/config.h
/dragonfly/gnu/usr.bin/cc41/libiberty/config.h
/dragonfly/gnu/usr.bin/gdb/libiberty/config.h
string.h
strings.h
/dragonfly/kerberos5/include/config.h
/dragonfly/lib/libbind/port_after.h
/dragonfly/lib/libc/locale/Makefile.inc
/dragonfly/lib/libc/string/Makefile.inc
/dragonfly/lib/libc/string/bcmp.3
/dragonfly/lib/libc/string/bcmp.c
/dragonfly/lib/libc/string/bcopy.3
/dragonfly/lib/libc/string/bcopy.c
/dragonfly/lib/libc/string/bstring.3
/dragonfly/lib/libc/string/bzero.3
/dragonfly/lib/libc/string/ffs.3
/dragonfly/lib/libc/string/ffs.c
/dragonfly/lib/libc/string/ffsl.c
/dragonfly/lib/libc/string/ffsll.c
/dragonfly/lib/libc/string/fls.c
/dragonfly/lib/libc/string/flsl.c
/dragonfly/lib/libc/string/flsll.c
/dragonfly/lib/libc/string/index.3
/dragonfly/lib/libc/string/index.c
/dragonfly/lib/libc/string/memccpy.3
/dragonfly/lib/libc/string/memccpy.c
/dragonfly/lib/libc/string/memchr.3
/dragonfly/lib/libc/string/memchr.c
/dragonfly/lib/libc/string/memcmp.3
/dragonfly/lib/libc/string/memcmp.c
/dragonfly/lib/libc/string/memcpy.3
/dragonfly/lib/libc/string/memmem.3
/dragonfly/lib/libc/string/memmem.c
/dragonfly/lib/libc/string/memmove.3
/dragonfly/lib/libc/string/memrchr.c
/dragonfly/lib/libc/string/memset.3
/dragonfly/lib/libc/string/memset.c
/dragonfly/lib/libc/string/rindex.c
/dragonfly/lib/libc/string/stpcpy.c
/dragonfly/lib/libc/string/strcasecmp.3
/dragonfly/lib/libc/string/strcasecmp.c
/dragonfly/lib/libc/string/strcasestr.c
/dragonfly/lib/libc/string/strcat.3
/dragonfly/lib/libc/string/strcat.c
/dragonfly/lib/libc/string/strchr.3
/dragonfly/lib/libc/string/strcmp.3
/dragonfly/lib/libc/string/strcmp.c
/dragonfly/lib/libc/string/strcoll.3
/dragonfly/lib/libc/string/strcpy.3
/dragonfly/lib/libc/string/strcpy.c
/dragonfly/lib/libc/string/strcspn.3
/dragonfly/lib/libc/string/strdup.3
/dragonfly/lib/libc/string/strdup.c
/dragonfly/lib/libc/string/strerror.3
/dragonfly/lib/libc/string/strerror.c
/dragonfly/lib/libc/string/string.3
/dragonfly/lib/libc/string/strlcat.c
/dragonfly/lib/libc/string/strlcpy.3
/dragonfly/lib/libc/string/strlcpy.c
/dragonfly/lib/libc/string/strlen.3
/dragonfly/lib/libc/string/strlen.c
/dragonfly/lib/libc/string/strmode.3
/dragonfly/lib/libc/string/strmode.c
/dragonfly/lib/libc/string/strncat.c
/dragonfly/lib/libc/string/strncmp.c
/dragonfly/lib/libc/string/strncpy.c
/dragonfly/lib/libc/string/strndup.c
/dragonfly/lib/libc/string/strnstr.c
/dragonfly/lib/libc/string/strpbrk.3
/dragonfly/lib/libc/string/strpbrk.c
/dragonfly/lib/libc/string/strsep.3
/dragonfly/lib/libc/string/strsep.c
/dragonfly/lib/libc/string/strsignal.c
/dragonfly/lib/libc/string/strspn.3
/dragonfly/lib/libc/string/strstr.3
/dragonfly/lib/libc/string/strstr.c
/dragonfly/lib/libc/string/strtok.3
/dragonfly/lib/libc/string/strtok.c
/dragonfly/lib/libc/string/strxfrm.3
/dragonfly/lib/libc/string/strxfrm.c
/dragonfly/lib/libc/string/swab.3
/dragonfly/lib/libc/string/swab.c
/dragonfly/lib/libc/string/wcscat.c
/dragonfly/lib/libc/string/wcscmp.c
/dragonfly/lib/libc/string/wcscoll.3
/dragonfly/lib/libc/string/wcscoll.c
/dragonfly/lib/libc/string/wcscpy.c
/dragonfly/lib/libc/string/wcscspn.c
/dragonfly/lib/libc/string/wcsdup.c
/dragonfly/lib/libc/string/wcslcat.c
/dragonfly/lib/libc/string/wcslcpy.c
/dragonfly/lib/libc/string/wcslen.c
/dragonfly/lib/libc/string/wcsncat.c
/dragonfly/lib/libc/string/wcsncmp.c
/dragonfly/lib/libc/string/wcsncpy.c
/dragonfly/lib/libc/string/wcspbrk.c
/dragonfly/lib/libc/string/wcsrchr.c
/dragonfly/lib/libc/string/wcsspn.c
/dragonfly/lib/libc/string/wcsstr.c
/dragonfly/lib/libc/string/wcstok.3
/dragonfly/lib/libc/string/wcstok.c
/dragonfly/lib/libc/string/wcswidth.3
/dragonfly/lib/libc/string/wcswidth.c
/dragonfly/lib/libc/string/wcsxfrm.3
/dragonfly/lib/libc/string/wcsxfrm.c
/dragonfly/lib/libc/string/wmemchr.3
/dragonfly/lib/libc/string/wmemchr.c
/dragonfly/lib/libc/string/wmemcmp.c
/dragonfly/lib/libc/string/wmemcpy.c
/dragonfly/lib/libc/string/wmemmove.c
/dragonfly/lib/libc/string/wmemset.c
/dragonfly/lib/libc/uuid/Makefile.inc
/dragonfly/lib/libc/uuid/uuid.3
/dragonfly/lib/libc/uuid/uuid_stream.c
/dragonfly/lib/libc/yp/xdryp.c
/dragonfly/lib/libc/yp/yplib.c
/dragonfly/lib/libmagic/config.h
/dragonfly/lib/libsdp/sdp.3
/dragonfly/libexec/rpc.rstatd/rstat_proc.c
/dragonfly/libexec/rpc.rusersd/rusers_proc.c
/dragonfly/libexec/rpc.rwalld/rwalld.c
/dragonfly/libexec/rpc.sprayd/sprayd.c
/dragonfly/libexec/rtld-elf/amd64/rtld_start.S
/dragonfly/libexec/rtld-elf/rtld.c
/dragonfly/libexec/rtld-elf/rtld.h
/dragonfly/sbin/newfs_hammer/newfs_hammer.8
/dragonfly/sbin/umount/Makefile
/dragonfly/sbin/umount/umount.c
/dragonfly/share/examples/rconfig/hammer.sh
/dragonfly/share/man/man4/jme.4
/dragonfly/share/man/man4/re.4
/dragonfly/share/man/man4/ugensa.4
/dragonfly/share/man/man5/nsswitch.conf.5
/dragonfly/share/man/man7/tuning.7
/dragonfly/share/man/man7/vkernel.7
/dragonfly/share/man/man8/man8.i386/MAKEDEV.8
/dragonfly/share/man/man9/VOP_ADVLOCK.9
/dragonfly/share/man/man9/VOP_LOCK.9
/dragonfly/share/man/man9/VOP_PATHCONF.9
/dragonfly/share/man/man9/VOP_RDWR.9
/dragonfly/share/man/man9/bus_alloc_resource.9
/dragonfly/share/man/man9/bus_dma.9
/dragonfly/share/man/man9/ieee80211.9
/dragonfly/share/man/man9/ifnet.9
/dragonfly/share/man/man9/mbuf.9
/dragonfly/share/man/man9/pfil.9
/dragonfly/share/man/man9/serializer.9
/dragonfly/share/man/man9/sysctl.9
/dragonfly/share/man/man9/sysctl_ctx_init.9
/dragonfly/share/man/man9/vget.9
/dragonfly/share/man/man9/vhold.9
/dragonfly/share/man/man9/vput.9
/dragonfly/share/man/man9/vref.9
/dragonfly/share/man/man9/vrele.9
/dragonfly/share/zoneinfo/asia
/dragonfly/sys/boot/common/help.common
/dragonfly/sys/boot/pc32/boot2/Makefile
/dragonfly/sys/config/JG64
/dragonfly/sys/cpu/amd64/include/asmacros.h
/dragonfly/sys/cpu/amd64/include/frame.h
/dragonfly/sys/cpu/amd64/include/pmap.h
/dragonfly/sys/cpu/amd64/include/psl.h
/dragonfly/sys/cpu/amd64/include/reg.h
/dragonfly/sys/cpu/amd64/include/sigframe.h
/dragonfly/sys/cpu/amd64/include/signal.h
/dragonfly/sys/cpu/amd64/include/ucontext.h
/dragonfly/sys/cpu/i386/include/cpu.h
/dragonfly/sys/dev/drm/drm_pci.c
/dragonfly/sys/dev/drm/r600_cp.c
/dragonfly/sys/dev/drm/radeon_cp.c
/dragonfly/sys/dev/virtual/disk/vdisk.c
/dragonfly/sys/emulation/linux/linux_stats.c
/dragonfly/sys/kern/imgact_elf.c
/dragonfly/sys/kern/kern_descrip.c
/dragonfly/sys/kern/tty.c
/dragonfly/sys/kern/uipc_mbuf.c
/dragonfly/sys/kern/uipc_usrreq.c
/dragonfly/sys/kern/usched_dummy.c
/dragonfly/sys/kern/vfs_default.c
/dragonfly/sys/kern/vfs_helper.c
/dragonfly/sys/kern/vfs_nlookup.c
/dragonfly/sys/kern/vfs_subr.c
/dragonfly/sys/kern/vfs_syscalls.c
/dragonfly/sys/kern/vfs_vopops.c
/dragonfly/sys/net/altq/altq_rmclass.c
/dragonfly/sys/net/bridge/if_bridge.c
/dragonfly/sys/net/if_ethersubr.c
/dragonfly/sys/net/vlan/if_vlan.c
/dragonfly/sys/platform/pc64/amd64/exception.S
/dragonfly/sys/platform/pc64/amd64/genassym.c
/dragonfly/sys/platform/pc64/amd64/ipl.s
/dragonfly/sys/platform/pc64/amd64/machdep.c
/dragonfly/sys/platform/pc64/amd64/sigtramp.s
/dragonfly/sys/platform/pc64/amd64/support.s
/dragonfly/sys/platform/pc64/amd64/swtch.s
/dragonfly/sys/platform/pc64/amd64/trap.c
/dragonfly/sys/platform/pc64/icu/icu_vector.s
/dragonfly/sys/platform/pc64/include/pcb.h
/dragonfly/sys/platform/vkernel/i386/trap.c
/dragonfly/sys/platform/vkernel/platform/cothread.c
/dragonfly/sys/sys/fcntl.h
/dragonfly/sys/sys/file.h
/dragonfly/sys/sys/filedesc.h
/dragonfly/sys/sys/imgact_elf.h
/dragonfly/sys/sys/tree.h
/dragonfly/sys/sys/un.h
/dragonfly/sys/sys/vfsops.h
/dragonfly/sys/sys/vnode.h
/dragonfly/sys/vfs/gnu/ext2fs/ext2_vnops.c
/dragonfly/sys/vfs/hammer/hammer_flusher.c
/dragonfly/sys/vfs/hpfs/hpfs_vnops.c
/dragonfly/sys/vfs/msdosfs/msdosfs_vnops.c
/dragonfly/sys/vfs/ntfs/ntfs_vnops.c
/dragonfly/sys/vfs/nwfs/nwfs_vnops.c
/dragonfly/sys/vfs/smbfs/smbfs_vnops.c
/dragonfly/sys/vfs/specfs/spec_vnops.c
/dragonfly/sys/vfs/udf/udf_vnops.c
/dragonfly/sys/vfs/ufs/ufs_vnops.c
/dragonfly/sys/vfs/union/union_vnops.c
/dragonfly/test/amd64/Makefile
/dragonfly/test/debug/fdpassing.c
/dragonfly/test/debug/revoke.c
/dragonfly/usr.bin/rdist/defs.h
/dragonfly/usr.bin/rdist/docmd.c
/dragonfly/usr.bin/rdist/server.c
/dragonfly/usr.bin/systat/tcp.c
/dragonfly/usr.sbin/battd/battd.8
/dragonfly/usr.sbin/battd/battd.c
/dragonfly/usr.sbin/i4b/isdnd/alias.c
/dragonfly/usr.sbin/i4b/isdnd/controller.c
/dragonfly/usr.sbin/i4b/isdnd/curses.c
/dragonfly/usr.sbin/i4b/isdnd/dial.c
/dragonfly/usr.sbin/i4b/isdnd/exec.c
/dragonfly/usr.sbin/i4b/isdnd/fsm.c
/dragonfly/usr.sbin/i4b/isdnd/holiday.c
/dragonfly/usr.sbin/i4b/isdnd/isdnd.h
/dragonfly/usr.sbin/i4b/isdnd/log.c
/dragonfly/usr.sbin/i4b/isdnd/main.c
/dragonfly/usr.sbin/i4b/isdnd/monitor.c
/dragonfly/usr.sbin/i4b/isdnd/msghdl.c
/dragonfly/usr.sbin/i4b/isdnd/process.c
/dragonfly/usr.sbin/i4b/isdnd/rates.c
/dragonfly/usr.sbin/i4b/isdnd/rc_config.c
/dragonfly/usr.sbin/i4b/isdnd/support.c
/dragonfly/usr.sbin/i4b/isdnd/timer.c
/dragonfly/usr.sbin/mrouted/callout.c
/dragonfly/usr.sbin/mrouted/cfparse.y
/dragonfly/usr.sbin/mrouted/config.c
/dragonfly/usr.sbin/mrouted/defs.h
/dragonfly/usr.sbin/mrouted/icmp.c
/dragonfly/usr.sbin/mrouted/igmp.c
/dragonfly/usr.sbin/mrouted/ipip.c
/dragonfly/usr.sbin/mrouted/kern.c
/dragonfly/usr.sbin/mrouted/main.c
/dragonfly/usr.sbin/mrouted/mapper.c
/dragonfly/usr.sbin/mrouted/mrinfo.c
/dragonfly/usr.sbin/mrouted/mtrace.c
/dragonfly/usr.sbin/mrouted/prune.c
/dragonfly/usr.sbin/mrouted/route.c
/dragonfly/usr.sbin/mrouted/rsrr.c
/dragonfly/usr.sbin/mrouted/vif.c
/dragonfly/usr.sbin/pppstats/pppstats.8
/dragonfly/usr.sbin/rpc.lockd/lockd_lock.c
/dragonfly/usr.sbin/rpc.statd/file.c
/dragonfly/usr.sbin/rpc.statd/procs.c
/dragonfly/usr.sbin/rpc.ypxfrd/ypxfrd_server.c
/dragonfly/usr.sbin/sdpd/sdpd.8
/dragonfly/usr.sbin/vknetd/vknetd.8
/dragonfly/usr.sbin/vnconfig/vnconfig.8
/dragonfly/usr.sbin/vnconfig/vnconfig.c
/dragonfly/usr.sbin/yp_mkdb/yp_mkdb.c
7048805a29-Mar-2009 Sascha Wildner <saw@online.de>

lib/libc/yp: Silence warnings.


/dragonfly/Makefile.inc1
/dragonfly/Makefile_upgrade.inc
/dragonfly/bin/csh/Makefile
/dragonfly/bin/pax/ar_io.c
/dragonfly/bin/pax/extern.h
/dragonfly/bin/pax/options.c
/dragonfly/bin/pax/pax.1
/dragonfly/etc/MAKEDEV
/dragonfly/gnu/usr.bin/cc34/Makefile.tgt
/dragonfly/gnu/usr.bin/cc34/c++/Makefile
/dragonfly/gnu/usr.bin/cc34/cc/Makefile
/dragonfly/gnu/usr.bin/cc34/cc1obj/Makefile
/dragonfly/gnu/usr.bin/cc34/cc1plus/Makefile
/dragonfly/gnu/usr.bin/cc34/cpp/Makefile
/dragonfly/gnu/usr.bin/cc34/gcov/Makefile
/dragonfly/gnu/usr.bin/cc34/libbackend/Makefile
/dragonfly/gnu/usr.bin/cc41/Makefile.tgt
/dragonfly/gnu/usr.bin/cc41/c++/Makefile
/dragonfly/gnu/usr.bin/cc41/cc/Makefile
/dragonfly/gnu/usr.bin/cc41/cc1obj/Makefile
/dragonfly/gnu/usr.bin/cc41/cc1plus/Makefile
/dragonfly/gnu/usr.bin/cc41/cpp/Makefile
/dragonfly/gnu/usr.bin/cc41/gcov/Makefile
/dragonfly/gnu/usr.bin/cc41/libbackend/Makefile
rpcsvc/ypclnt.h
/dragonfly/lib/libc/gen/strtofflags.c
/dragonfly/lib/libc/gen/sysconf.3
/dragonfly/lib/libc/gen/ttyname.3
/dragonfly/lib/libc/stdio/Makefile.inc
/dragonfly/lib/libc/stdio/flockfile.3
/dragonfly/lib/libc/stdio/getc.3
/dragonfly/lib/libc/stdio/putc.3
/dragonfly/lib/libc/stdlib/exit.c
/dragonfly/lib/libc/stdtime/localtime.c
/dragonfly/lib/libc/sys/aio_write.2
/dragonfly/lib/libc/sys/stat.2
/dragonfly/lib/libc/yp/xdryp.c
/dragonfly/lib/libc/yp/yplib.c
/dragonfly/lib/libstand/Makefile
/dragonfly/libexec/bootpd/bootpd.c
/dragonfly/libexec/bootpd/bootpgw/bootpgw.c
/dragonfly/libexec/bootpd/dovend.c
/dragonfly/libexec/bootpd/dovend.h
/dragonfly/libexec/bootpd/dumptab.c
/dragonfly/libexec/bootpd/getether.c
/dragonfly/libexec/bootpd/getif.c
/dragonfly/libexec/bootpd/hash.c
/dragonfly/libexec/bootpd/hash.h
/dragonfly/libexec/bootpd/hwaddr.c
/dragonfly/libexec/bootpd/hwaddr.h
/dragonfly/libexec/bootpd/lookup.c
/dragonfly/libexec/bootpd/lookup.h
/dragonfly/libexec/bootpd/readfile.c
/dragonfly/libexec/bootpd/readfile.h
/dragonfly/libexec/bootpd/report.c
/dragonfly/libexec/bootpd/report.h
/dragonfly/libexec/bootpd/rtmsg.c
/dragonfly/libexec/bootpd/tools/bootpef/bootpef.c
/dragonfly/libexec/bootpd/tools/bootptest/bootptest.c
/dragonfly/libexec/bootpd/tools/bootptest/bootptest.h
/dragonfly/libexec/bootpd/tools/bootptest/print-bootp.c
/dragonfly/libexec/bootpd/tzone.c
/dragonfly/libexec/makekey/makekey.c
/dragonfly/libexec/mknetid/Makefile
/dragonfly/libexec/mknetid/hash.c
/dragonfly/libexec/mknetid/mknetid.c
/dragonfly/libexec/mknetid/parse_group.c
/dragonfly/sbin/ccdconfig/Makefile
/dragonfly/sbin/ccdconfig/ccdconfig.c
/dragonfly/sbin/gpt/Makefile
/dragonfly/sbin/md5/Makefile
/dragonfly/sbin/mount_std/Makefile
/dragonfly/sbin/mount_std/mount_std.c
/dragonfly/sbin/mountd/mountd.c
/dragonfly/share/man/man4/ddb.4
/dragonfly/share/man/man4/iic.4
/dragonfly/share/man/man4/man4.i386/gsc.4
/dragonfly/share/man/man4/netintro.4
/dragonfly/share/man/man4/pf.4
/dragonfly/share/man/man4/pty.4
/dragonfly/share/man/man4/ses.4
/dragonfly/share/man/man4/smb.4
/dragonfly/share/man/man4/tap.4
/dragonfly/share/man/man4/tty.4
/dragonfly/share/man/man4/xpt.4
/dragonfly/share/man/man5/devices.conf.5
/dragonfly/share/man/man5/kernconf.5
/dragonfly/share/man/man7/Makefile
/dragonfly/share/man/man7/build.7
/dragonfly/share/man/man7/committer.7
/dragonfly/share/man/man7/development.7
/dragonfly/share/man/man7/stdint.7
/dragonfly/share/man/man7/vkernel.7
/dragonfly/share/man/man9/Makefile
/dragonfly/share/man/man9/bus_dma.9
/dragonfly/share/man/man9/ioctl.9
/dragonfly/share/man/man9/objcache.9
/dragonfly/share/misc/iso639
/dragonfly/share/zoneinfo/africa
/dragonfly/share/zoneinfo/asia
/dragonfly/share/zoneinfo/southamerica
/dragonfly/sys/conf/files
/dragonfly/sys/conf/kern.post.mk
/dragonfly/sys/conf/kern.pre.mk
/dragonfly/sys/conf/kmod.mk
/dragonfly/sys/dev/drm/ati_pcigart.c
/dragonfly/sys/dev/drm/drm.h
/dragonfly/sys/dev/drm/drmP.h
/dragonfly/sys/dev/drm/drm_agpsupport.c
/dragonfly/sys/dev/drm/drm_atomic.h
/dragonfly/sys/dev/drm/drm_auth.c
/dragonfly/sys/dev/drm/drm_bufs.c
/dragonfly/sys/dev/drm/drm_context.c
/dragonfly/sys/dev/drm/drm_dma.c
/dragonfly/sys/dev/drm/drm_drawable.c
/dragonfly/sys/dev/drm/drm_drv.c
/dragonfly/sys/dev/drm/drm_fops.c
/dragonfly/sys/dev/drm/drm_internal.h
/dragonfly/sys/dev/drm/drm_ioctl.c
/dragonfly/sys/dev/drm/drm_irq.c
/dragonfly/sys/dev/drm/drm_linux_list.h
/dragonfly/sys/dev/drm/drm_lock.c
/dragonfly/sys/dev/drm/drm_memory.c
/dragonfly/sys/dev/drm/drm_pci.c
/dragonfly/sys/dev/drm/drm_pciids.h
/dragonfly/sys/dev/drm/drm_sarea.h
/dragonfly/sys/dev/drm/drm_scatter.c
/dragonfly/sys/dev/drm/drm_sysctl.c
/dragonfly/sys/dev/drm/drm_vm.c
/dragonfly/sys/dev/drm/i915/Makefile
/dragonfly/sys/dev/drm/i915_dma.c
/dragonfly/sys/dev/drm/i915_drm.h
/dragonfly/sys/dev/drm/i915_drv.c
/dragonfly/sys/dev/drm/i915_drv.h
/dragonfly/sys/dev/drm/i915_irq.c
/dragonfly/sys/dev/drm/i915_mem.c
/dragonfly/sys/dev/drm/i915_reg.h
/dragonfly/sys/dev/drm/i915_suspend.c
/dragonfly/sys/dev/drm/mach64_dma.c
/dragonfly/sys/dev/drm/mach64_drm.h
/dragonfly/sys/dev/drm/mach64_drv.c
/dragonfly/sys/dev/drm/mach64_drv.h
/dragonfly/sys/dev/drm/mach64_irq.c
/dragonfly/sys/dev/drm/mach64_state.c
/dragonfly/sys/dev/drm/mga_dma.c
/dragonfly/sys/dev/drm/mga_drm.h
/dragonfly/sys/dev/drm/mga_drv.c
/dragonfly/sys/dev/drm/mga_drv.h
/dragonfly/sys/dev/drm/mga_irq.c
/dragonfly/sys/dev/drm/mga_state.c
/dragonfly/sys/dev/drm/mga_ucode.h
/dragonfly/sys/dev/drm/mga_warp.c
/dragonfly/sys/dev/drm/r128_cce.c
/dragonfly/sys/dev/drm/r128_drm.h
/dragonfly/sys/dev/drm/r128_drv.c
/dragonfly/sys/dev/drm/r128_drv.h
/dragonfly/sys/dev/drm/r128_irq.c
/dragonfly/sys/dev/drm/r128_state.c
/dragonfly/sys/dev/drm/r300_cmdbuf.c
/dragonfly/sys/dev/drm/r300_reg.h
/dragonfly/sys/dev/drm/r600_cp.c
/dragonfly/sys/dev/drm/r600_microcode.h
/dragonfly/sys/dev/drm/radeon/Makefile
/dragonfly/sys/dev/drm/radeon_cp.c
/dragonfly/sys/dev/drm/radeon_drm.h
/dragonfly/sys/dev/drm/radeon_drv.c
/dragonfly/sys/dev/drm/radeon_drv.h
/dragonfly/sys/dev/drm/radeon_irq.c
/dragonfly/sys/dev/drm/radeon_mem.c
/dragonfly/sys/dev/drm/radeon_microcode.h
/dragonfly/sys/dev/drm/radeon_state.c
/dragonfly/sys/dev/drm/savage_bci.c
/dragonfly/sys/dev/drm/savage_drm.h
/dragonfly/sys/dev/drm/savage_drv.c
/dragonfly/sys/dev/drm/savage_drv.h
/dragonfly/sys/dev/drm/savage_state.c
/dragonfly/sys/dev/drm/sis_drm.h
/dragonfly/sys/dev/drm/sis_drv.c
/dragonfly/sys/dev/drm/sis_drv.h
/dragonfly/sys/dev/drm/sis_ds.c
/dragonfly/sys/dev/drm/sis_ds.h
/dragonfly/sys/dev/drm/sis_mm.c
/dragonfly/sys/dev/drm/tdfx_drv.c
/dragonfly/sys/dev/drm/tdfx_drv.h
/dragonfly/sys/dev/netif/em/if_em.c
/dragonfly/sys/dev/netif/emx/if_emx.c
/dragonfly/sys/dev/netif/ig_hal/e1000_api.c
/dragonfly/sys/dev/netif/ig_hal/e1000_hw.h
/dragonfly/sys/kern/kern_ktr.c
/dragonfly/sys/kern/lwkt_thread.c
/dragonfly/sys/netinet/in_rmx.c
/dragonfly/sys/netinet/ip_flow.c
/dragonfly/sys/netinet/ip_flow.h
/dragonfly/sys/netinet/ip_input.c
/dragonfly/sys/netinet/ip_var.h
/dragonfly/sys/netinet/sctp_pcb.c
/dragonfly/sys/platform/pc32/i386/db_interface.c
/dragonfly/sys/platform/pc64/amd64/db_interface.c
/dragonfly/sys/platform/vkernel/i386/db_interface.c
/dragonfly/sys/sys/cdefs.h
/dragonfly/sys/sys/ktr.h
/dragonfly/test/amd64/Makefile
/dragonfly/test/test/README
/dragonfly/usr.bin/ktrdump/ktrdump.c
/dragonfly/usr.bin/pctrack/Makefile
/dragonfly/usr.bin/pctrack/pctrack.c
/dragonfly/usr.bin/sasc/sasc.1
/dragonfly/usr.bin/tset/Makefile
/dragonfly/usr.bin/tset/extern.h
/dragonfly/usr.bin/tset/map.c
/dragonfly/usr.bin/tset/set.c
/dragonfly/usr.bin/tset/term.c
/dragonfly/usr.bin/tset/tset.c
/dragonfly/usr.bin/tset/wrterm.c
/dragonfly/usr.bin/undo/undo.1
/dragonfly/usr.bin/undo/undo.c
/dragonfly/usr.sbin/i4b/isdnd/isdnd.8
/dragonfly/usr.sbin/i4b/man/i4b.4
/dragonfly/usr.sbin/i4b/man/i4btel.4
/dragonfly/usr.sbin/kernbb/Makefile
/dragonfly/usr.sbin/kernbb/kernbb.c
/dragonfly/usr.sbin/mptable/mptable.1
/dragonfly/usr.sbin/mptable/mptable.c
/dragonfly/usr.sbin/mtree/Makefile
/dragonfly/usr.sbin/mtree/compare.c
/dragonfly/usr.sbin/mtree/create.c
/dragonfly/usr.sbin/mtree/excludes.c
/dragonfly/usr.sbin/mtree/extern.h
/dragonfly/usr.sbin/mtree/misc.c
/dragonfly/usr.sbin/mtree/mtree.c
/dragonfly/usr.sbin/mtree/verify.c
/dragonfly/usr.sbin/ppp/Makefile
/dragonfly/usr.sbin/ppp/ipcp.c
/dragonfly/usr.sbin/ppp/ppp.8.m4
/dragonfly/usr.sbin/pwd_mkdb/Makefile
/dragonfly/usr.sbin/vnconfig/Makefile
/dragonfly/usr.sbin/vnconfig/vnconfig.c
/dragonfly/usr.sbin/ypset/ypset.c
d2cd83ff22-Feb-2009 Sascha Wildner <saw@online.de>

Install ciss(4) headers to /usr/include so that userland can find cissio.h.


/dragonfly/Makefile_upgrade.inc
/dragonfly/README
/dragonfly/bin/cpdup/misc.c
/dragonfly/bin/df/df.c
/dragonfly/bin/expr/expr.y
/dragonfly/bin/ls/ls.c
/dragonfly/bin/ls/print.c
/dragonfly/bin/pax/Makefile
/dragonfly/bin/pax/ar_io.c
/dragonfly/bin/pax/cpio.c
/dragonfly/bin/pax/gen_subs.c
/dragonfly/bin/pax/options.c
/dragonfly/bin/rcp/rcp.c
/dragonfly/bin/sh/sh.1
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/flow.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn.h
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_diagnostic.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_install.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_subpart.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_subpart_hammer.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/lib/libinstaller/survey.c
/dragonfly/contrib/opie/libopie/newseed.c
/dragonfly/contrib/tcp_wrappers/misc.c
/dragonfly/contrib/tcsh-6/sh.c
/dragonfly/contrib/tcsh-6/sh.decls.h
/dragonfly/contrib/tcsh-6/sh.set.c
/dragonfly/crypto/telnet/telnetd/state.c
/dragonfly/etc/Makefile.usr
/dragonfly/etc/mtree/BSD.include.dist
/dragonfly/etc/mtree/BSD.usr.dist
/dragonfly/etc/printcap
/dragonfly/etc/rc.d/nfsclient
/dragonfly/games/fortune/datfiles/dragonfly-tips
/dragonfly/games/fortune/strfile/strfile.8
/dragonfly/games/sail/assorted.c
/dragonfly/games/sail/dr_1.c
/dragonfly/games/sail/dr_2.c
/dragonfly/games/sail/dr_3.c
/dragonfly/games/sail/dr_4.c
/dragonfly/games/sail/dr_5.c
/dragonfly/games/sail/externs.h
/dragonfly/games/sail/parties.c
/dragonfly/games/sail/pl_1.c
/dragonfly/games/sail/pl_3.c
/dragonfly/games/sail/pl_4.c
/dragonfly/games/sail/pl_5.c
/dragonfly/games/sail/pl_6.c
/dragonfly/games/sail/pl_7.c
/dragonfly/games/sail/pl_main.c
/dragonfly/games/sail/sync.c
Makefile
/dragonfly/lib/libbluetooth/Makefile
/dragonfly/lib/libc/net/getservent.c
/dragonfly/lib/libc/rpc/rpc.3
/dragonfly/lib/libc/stdtime/localtime.c
/dragonfly/lib/libc/stdtime/private.h
/dragonfly/lib/libc/stdtime/strftime.c
/dragonfly/lib/libc/sys/ioctl.2
/dragonfly/lib/libc/sys/pathconf.2
/dragonfly/lib/libc/sys/usched_set.2
/dragonfly/lib/libc_r/test/propagate_s.pl
/dragonfly/lib/libc_r/test/verify
/dragonfly/lib/libdevstat/Makefile
/dragonfly/lib/libdevstat/devstat.c
/dragonfly/lib/libdevstat/devstat.h
/dragonfly/lib/libncurses/libncurses/Makefile
/dragonfly/lib/libpthread/Makefile
/dragonfly/lib/libstand/Makefile
/dragonfly/lib/libstand/bzipfs.c
/dragonfly/lib/libstand/cd9660.c
/dragonfly/lib/libstand/close.c
/dragonfly/lib/libstand/dosfs.c
/dragonfly/lib/libstand/environment.c
/dragonfly/lib/libstand/ext2fs.c
/dragonfly/lib/libstand/gzipfs.c
/dragonfly/lib/libstand/hammerread.c
/dragonfly/lib/libstand/libstand.3
/dragonfly/lib/libstand/nfs.c
/dragonfly/lib/libstand/open.c
/dragonfly/lib/libstand/splitfs.c
/dragonfly/lib/libstand/stand.h
/dragonfly/lib/libstand/tftp.c
/dragonfly/lib/libstand/ufs.c
/dragonfly/lib/libstand/zalloc_malloc.c
/dragonfly/lib/libstand/zipfs.c
/dragonfly/lib/libusbhid/Makefile
/dragonfly/libexec/dma/Makefile
/dragonfly/libexec/dma/dma.c
/dragonfly/libexec/dma/dma.h
/dragonfly/libexec/dma/net.c
/dragonfly/libexec/pppoed/pppoed.c
/dragonfly/libexec/telnetd/state.c
/dragonfly/libexec/ypxfr/Makefile
/dragonfly/libexec/ypxfr/yp_dbwrite.c
/dragonfly/libexec/ypxfr/ypxfr_extern.h
/dragonfly/libexec/ypxfr/ypxfr_getmap.c
/dragonfly/libexec/ypxfr/ypxfr_main.c
/dragonfly/libexec/ypxfr/ypxfr_misc.c
/dragonfly/libexec/ypxfr/ypxfrd_getmap.c
/dragonfly/nrelease/Makefile
/dragonfly/nrelease/gui/etc/defaults/pfi.conf
/dragonfly/nrelease/gui/etc/fstab
/dragonfly/nrelease/gui/etc/issue
/dragonfly/nrelease/gui/etc/master.passwd
/dragonfly/nrelease/gui/etc/ttys
/dragonfly/nrelease/gui/root/.zshrc
/dragonfly/nrelease/gui/usr/local/bin/installer
/dragonfly/nrelease/root/index.html
/dragonfly/sbin/atacontrol/atacontrol.c
/dragonfly/sbin/ccdconfig/ccdconfig.8
/dragonfly/sbin/ccdconfig/ccdconfig.c
/dragonfly/sbin/dhclient/Makefile
/dragonfly/sbin/dhclient/dhclient.c
/dragonfly/sbin/diskinfo/diskinfo.8
/dragonfly/sbin/diskinfo/diskinfo.c
/dragonfly/sbin/disklabel/disklabel.c
/dragonfly/sbin/fsck_msdosfs/fat.c
/dragonfly/sbin/hammer/Makefile
/dragonfly/sbin/hammer/cmd_cleanup.c
/dragonfly/sbin/hammer/cmd_rebalance.c
/dragonfly/sbin/hammer/cmd_show.c
/dragonfly/sbin/hammer/cmd_stats.c
/dragonfly/sbin/hammer/hammer.8
/dragonfly/sbin/hammer/hammer.c
/dragonfly/sbin/hammer/hammer.h
/dragonfly/sbin/i386/Makefile
/dragonfly/sbin/ifconfig/ifconfig.8
/dragonfly/sbin/ifconfig/ifconfig.c
/dragonfly/sbin/init/init.c
/dragonfly/sbin/jscan/jscan.8
/dragonfly/sbin/jscan/jscan.c
/dragonfly/sbin/mount_udf/Makefile
/dragonfly/sbin/mount_udf/mount_udf.c
/dragonfly/sbin/nologin/Makefile
/dragonfly/sbin/rconfig/client.c
/dragonfly/sbin/route/route.c
/dragonfly/share/examples/cvsup/README
/dragonfly/share/examples/isdn/contrib/isdnd_acct
/dragonfly/share/examples/isdn/contrib/isdnd_acct.pl
/dragonfly/share/examples/kld/cdev/module/cdev.c
/dragonfly/share/examples/kld/cdev/module/cdevmod.c
/dragonfly/share/examples/kld/cdev/test/testcdev.c
/dragonfly/share/examples/printing/netprint
/dragonfly/share/installer/cmdnames.conf
/dragonfly/share/man/man4/em.4
/dragonfly/share/man/man4/iwi.4
/dragonfly/share/man/man4/ubsa.4
/dragonfly/share/man/man4/vinum.4
/dragonfly/share/man/man5/motd.5
/dragonfly/share/man/man5/uuids.5
/dragonfly/share/man/man7/build.7
/dragonfly/share/man/man7/committer.7
/dragonfly/share/man/man7/development.7
/dragonfly/share/man/man7/release.7
/dragonfly/share/man/man8/crash.8
/dragonfly/share/man/man9/DEV_MODULE.9
/dragonfly/share/man/man9/Makefile
/dragonfly/share/man/man9/bus_dma.9
/dragonfly/share/man/man9/devtoname.9
/dragonfly/share/man/man9/ioctl.9
/dragonfly/share/man/man9/make_dev.9
/dragonfly/share/man/man9/objcache.9
/dragonfly/share/man/man9/vcount.9
/dragonfly/share/misc/bsd-family-tree
/dragonfly/share/mk/bsd.kmod.mk
/dragonfly/share/mk/bsd.own.mk
/dragonfly/share/zoneinfo/leapseconds
/dragonfly/share/zoneinfo/northamerica
/dragonfly/sys/boot/common/boot2.h
/dragonfly/sys/boot/common/devopen.c
/dragonfly/sys/boot/common/dinode.h
/dragonfly/sys/boot/common/ufsread.c
/dragonfly/sys/boot/ficl/Makefile
/dragonfly/sys/boot/forth/loader-bootp.conf
/dragonfly/sys/boot/pc32/boot2/Makefile
/dragonfly/sys/boot/pc32/boot2/boot1.S
/dragonfly/sys/boot/pc32/boot2/boot2.c
/dragonfly/sys/boot/pc32/bootasm.h
/dragonfly/sys/boot/pc32/libi386/pxe.c
/dragonfly/sys/boot/pc32/pxeldr/pxeboot.8
/dragonfly/sys/boot/pc32/pxeldr_tftp/pxeboot_tftp.8
/dragonfly/sys/bus/pci/amd64/pci_cfgreg.c
/dragonfly/sys/bus/pci/i386/pci_cfgreg.c
/dragonfly/sys/bus/usb/usb_ethersubr.c
/dragonfly/sys/conf/files
/dragonfly/sys/conf/kern.paths.mk
/dragonfly/sys/conf/kern.post.mk
/dragonfly/sys/conf/kern.pre.mk
/dragonfly/sys/conf/kmod.mk
/dragonfly/sys/conf/options
/dragonfly/sys/config/GENERIC
/dragonfly/sys/config/JG64
/dragonfly/sys/config/LINT
/dragonfly/sys/cpu/amd64/include/limits.h
/dragonfly/sys/cpu/i386/include/limits.h
/dragonfly/sys/ddb/ddb.h
/dragonfly/sys/dev/acpica5/Osd/OsdSynch.c
/dragonfly/sys/dev/acpica5/acpi_cpu.c
/dragonfly/sys/dev/disk/ncv/ncr53c500var.h
/dragonfly/sys/dev/disk/nsp/nspvar.h
/dragonfly/sys/dev/disk/stg/tmc18c30var.h
/dragonfly/sys/dev/disk/vn/vn.c
/dragonfly/sys/dev/netif/Makefile
/dragonfly/sys/dev/netif/ale/if_ale.c
/dragonfly/sys/dev/netif/bce/if_bce.c
/dragonfly/sys/dev/netif/bce/if_bcereg.h
/dragonfly/sys/dev/netif/bfe/if_bfe.c
/dragonfly/sys/dev/netif/bfe/if_bfereg.h
/dragonfly/sys/dev/netif/bge/if_bge.c
/dragonfly/sys/dev/netif/bge/if_bgereg.h
/dragonfly/sys/dev/netif/em/Makefile
/dragonfly/sys/dev/netif/em/if_em.c
/dragonfly/sys/dev/netif/em/if_em.h
/dragonfly/sys/dev/netif/emx/Makefile
/dragonfly/sys/dev/netif/emx/if_emx.c
/dragonfly/sys/dev/netif/emx/if_emx.h
/dragonfly/sys/dev/netif/et/if_et.c
/dragonfly/sys/dev/netif/et/if_etvar.h
/dragonfly/sys/dev/netif/fxp/if_fxp.c
/dragonfly/sys/dev/netif/ig_hal/LICENSE
/dragonfly/sys/dev/netif/ig_hal/Makefile
/dragonfly/sys/dev/netif/ig_hal/e1000_80003es2lan.c
/dragonfly/sys/dev/netif/ig_hal/e1000_80003es2lan.h
/dragonfly/sys/dev/netif/ig_hal/e1000_82540.c
/dragonfly/sys/dev/netif/ig_hal/e1000_82541.c
/dragonfly/sys/dev/netif/ig_hal/e1000_82541.h
/dragonfly/sys/dev/netif/ig_hal/e1000_82542.c
/dragonfly/sys/dev/netif/ig_hal/e1000_82543.c
/dragonfly/sys/dev/netif/ig_hal/e1000_82543.h
/dragonfly/sys/dev/netif/ig_hal/e1000_82571.c
/dragonfly/sys/dev/netif/ig_hal/e1000_82571.h
/dragonfly/sys/dev/netif/ig_hal/e1000_82575.c
/dragonfly/sys/dev/netif/ig_hal/e1000_82575.h
/dragonfly/sys/dev/netif/ig_hal/e1000_api.c
/dragonfly/sys/dev/netif/ig_hal/e1000_api.h
/dragonfly/sys/dev/netif/ig_hal/e1000_defines.h
/dragonfly/sys/dev/netif/ig_hal/e1000_hw.h
/dragonfly/sys/dev/netif/ig_hal/e1000_ich8lan.c
/dragonfly/sys/dev/netif/ig_hal/e1000_ich8lan.h
/dragonfly/sys/dev/netif/ig_hal/e1000_mac.c
/dragonfly/sys/dev/netif/ig_hal/e1000_mac.h
/dragonfly/sys/dev/netif/ig_hal/e1000_manage.c
/dragonfly/sys/dev/netif/ig_hal/e1000_manage.h
/dragonfly/sys/dev/netif/ig_hal/e1000_nvm.c
/dragonfly/sys/dev/netif/ig_hal/e1000_nvm.h
/dragonfly/sys/dev/netif/ig_hal/e1000_osdep.c
/dragonfly/sys/dev/netif/ig_hal/e1000_osdep.h
/dragonfly/sys/dev/netif/ig_hal/e1000_phy.c
/dragonfly/sys/dev/netif/ig_hal/e1000_phy.h
/dragonfly/sys/dev/netif/ig_hal/e1000_regs.h
/dragonfly/sys/dev/netif/iwi/if_iwi.c
/dragonfly/sys/dev/netif/iwi/if_iwireg.h
/dragonfly/sys/dev/netif/iwi/if_iwivar.h
/dragonfly/sys/dev/netif/jme/Makefile
/dragonfly/sys/dev/netif/jme/if_jme.c
/dragonfly/sys/dev/netif/jme/if_jmereg.h
/dragonfly/sys/dev/netif/jme/if_jmevar.h
/dragonfly/sys/dev/netif/mii_layer/atphy.c
/dragonfly/sys/dev/netif/msk/if_msk.c
/dragonfly/sys/dev/netif/msk/if_mskreg.h
/dragonfly/sys/dev/netif/nfe/if_nfe.c
/dragonfly/sys/dev/netif/nfe/if_nfereg.h
/dragonfly/sys/dev/netif/nfe/if_nfevar.h
/dragonfly/sys/dev/netif/re/if_re.c
/dragonfly/sys/dev/netif/re/if_revar.h
/dragonfly/sys/dev/netif/rl/if_rl.c
/dragonfly/sys/dev/netif/rl/if_rlreg.h
/dragonfly/sys/dev/netif/sis/if_sis.c
/dragonfly/sys/dev/netif/sis/if_sisreg.h
/dragonfly/sys/dev/netif/sk/if_sk.c
/dragonfly/sys/dev/netif/sk/if_skreg.h
/dragonfly/sys/dev/netif/sk/if_skvar.h
/dragonfly/sys/dev/netif/stge/if_stge.c
/dragonfly/sys/dev/netif/stge/if_stgereg.h
/dragonfly/sys/dev/netif/stge/if_stgevar.h
/dragonfly/sys/dev/netif/xl/if_xl.c
/dragonfly/sys/dev/netif/xl/if_xlreg.h
/dragonfly/sys/dev/usbmisc/umodem/Makefile
/dragonfly/sys/emulation/linux/i386/syscalls.master
/dragonfly/sys/kern/kern_checkpoint.c
/dragonfly/sys/kern/kern_debug.c
/dragonfly/sys/kern/kern_exit.c
/dragonfly/sys/kern/kern_fork.c
/dragonfly/sys/kern/kern_ktrace.c
/dragonfly/sys/kern/kern_memio.c
/dragonfly/sys/kern/kern_msfbuf.c
/dragonfly/sys/kern/kern_physio.c
/dragonfly/sys/kern/kern_shutdown.c
/dragonfly/sys/kern/kern_sig.c
/dragonfly/sys/kern/kern_spinlock.c
/dragonfly/sys/kern/kern_subr.c
/dragonfly/sys/kern/kern_synch.c
/dragonfly/sys/kern/kern_timeout.c
/dragonfly/sys/kern/kern_usched.c
/dragonfly/sys/kern/libmchain/subr_mchain.c
/dragonfly/sys/kern/lwkt_thread.c
/dragonfly/sys/kern/makesyscalls.sh
/dragonfly/sys/kern/subr_busdma.c
/dragonfly/sys/kern/sys_pipe.c
/dragonfly/sys/kern/syscalls.master
/dragonfly/sys/kern/uipc_mbuf.c
/dragonfly/sys/kern/vfs_init.c
/dragonfly/sys/kern/vfs_syscalls.c
/dragonfly/sys/net/bridge/if_bridge.c
/dragonfly/sys/net/ethernet.h
/dragonfly/sys/net/if.h
/dragonfly/sys/net/if_ethersubr.c
/dragonfly/sys/net/if_var.h
/dragonfly/sys/net/netisr.c
/dragonfly/sys/net/netisr.h
/dragonfly/sys/net/ppp/if_ppp.c
/dragonfly/sys/net/radix.c
/dragonfly/sys/net/raw_cb.h
/dragonfly/sys/net/raw_usrreq.c
/dragonfly/sys/net/route.c
/dragonfly/sys/net/route.h
/dragonfly/sys/net/rtsock.c
/dragonfly/sys/net/toeplitz.c
/dragonfly/sys/net/toeplitz.h
/dragonfly/sys/net/toeplitz2.h
/dragonfly/sys/netbt/bt_proto.c
/dragonfly/sys/netgraph/netgraph/ng_base.c
/dragonfly/sys/netinet/if_atm.c
/dragonfly/sys/netinet/if_ether.c
/dragonfly/sys/netinet/in.h
/dragonfly/sys/netinet/ip_demux.c
/dragonfly/sys/netinet/ip_input.c
/dragonfly/sys/netinet/ip_output.c
/dragonfly/sys/netinet/ip_var.h
/dragonfly/sys/netinet/tcp_subr.c
/dragonfly/sys/netinet/udp_usrreq.c
/dragonfly/sys/netinet6/ip6_input.c
/dragonfly/sys/netinet6/nd6.c
/dragonfly/sys/netproto/802_11/ieee80211_dragonfly.h
/dragonfly/sys/netproto/802_11/wlan/ieee80211_input.c
/dragonfly/sys/netproto/atalk/ddp_usrreq.c
/dragonfly/sys/netproto/atm/atm_subr.c
/dragonfly/sys/netproto/atm/spans/spans_kxdr.c
/dragonfly/sys/netproto/ipx/ipx_input.c
/dragonfly/sys/netproto/mpls/mpls_input.c
/dragonfly/sys/netproto/natm/natm.c
/dragonfly/sys/netproto/ncp/ncp_rq.c
/dragonfly/sys/netproto/ncp/ncp_subr.c
/dragonfly/sys/netproto/ns/ns_input.c
/dragonfly/sys/platform/pc32/i386/busdma_machdep.c
/dragonfly/sys/platform/pc32/i386/db_trace.c
/dragonfly/sys/platform/pc32/i386/identcpu.c
/dragonfly/sys/platform/pc32/i386/mp_machdep.c
/dragonfly/sys/platform/pc32/i386/pmap.c
/dragonfly/sys/platform/pc32/i386/trap.c
/dragonfly/sys/platform/pc64/amd64/busdma_machdep.c
/dragonfly/sys/platform/pc64/amd64/db_trace.c
/dragonfly/sys/platform/pc64/amd64/identcpu.c
/dragonfly/sys/platform/pc64/amd64/pmap.c
/dragonfly/sys/platform/pc64/amd64/trap.c
/dragonfly/sys/platform/vkernel/i386/db_trace.c
/dragonfly/sys/platform/vkernel/i386/exception.c
/dragonfly/sys/platform/vkernel/i386/mp.c
/dragonfly/sys/platform/vkernel/i386/trap.c
/dragonfly/sys/platform/vkernel/platform/busdma_machdep.c
/dragonfly/sys/sys/_iovec.h
/dragonfly/sys/sys/_null.h
/dragonfly/sys/sys/bus_dma.h
/dragonfly/sys/sys/mbuf.h
/dragonfly/sys/sys/signal2.h
/dragonfly/sys/sys/signalvar.h
/dragonfly/sys/sys/socket.h
/dragonfly/sys/sys/sysmsg.h
/dragonfly/sys/sys/systm.h
/dragonfly/sys/sys/tree.h
/dragonfly/sys/sys/types.h
/dragonfly/sys/sys/uio.h
/dragonfly/sys/sys/usched.h
/dragonfly/sys/vfs/hammer/Makefile
/dragonfly/sys/vfs/hammer/hammer.h
/dragonfly/sys/vfs/hammer/hammer_btree.c
/dragonfly/sys/vfs/hammer/hammer_cursor.c
/dragonfly/sys/vfs/hammer/hammer_ioctl.c
/dragonfly/sys/vfs/hammer/hammer_ioctl.h
/dragonfly/sys/vfs/hammer/hammer_ondisk.c
/dragonfly/sys/vfs/hammer/hammer_rebalance.c
/dragonfly/sys/vfs/hammer/hammer_reblock.c
/dragonfly/sys/vfs/hammer/hammer_vnops.c
/dragonfly/sys/vfs/isofs/cd9660/cd9660_vnops.c
/dragonfly/sys/vfs/msdosfs/msdosfs_denode.c
/dragonfly/sys/vfs/msdosfs/msdosfs_lookup.c
/dragonfly/sys/vfs/msdosfs/msdosfs_vnops.c
/dragonfly/sys/vfs/nfs/nfs_subs.c
/dragonfly/sys/vfs/nfs/nfs_vnops.c
/dragonfly/sys/vfs/specfs/spec_vnops.c
/dragonfly/sys/vm/vm_vmspace.c
/dragonfly/test/test/README
/dragonfly/tools/gittemplate
/dragonfly/tools/test/devrandom/hammer.random
/dragonfly/tools/test/devrandom/hammer.urandom
/dragonfly/tools/test/devrandom/stat.16bit
/dragonfly/tools/test/devrandom/stat.8bit
/dragonfly/tools/tools/commitsdb/make_commit_db
/dragonfly/tools/tools/commitsdb/query_commit_db
/dragonfly/tools/tools/mid/mid-index
/dragonfly/tools/tools/mid/mid-master
/dragonfly/tools/tools/netrate/pktgen/Makefile
/dragonfly/tools/tools/pciid/mk_pci_vendors.pl
/dragonfly/tools/tools/scsi-defects/scsi-defects.pl
/dragonfly/usr.bin/checkpt/checkpt.c
/dragonfly/usr.bin/find/Makefile
/dragonfly/usr.bin/find/function.c
/dragonfly/usr.bin/find/getdate.y
/dragonfly/usr.bin/finger/Makefile
/dragonfly/usr.bin/finger/extern.h
/dragonfly/usr.bin/finger/lprint.c
/dragonfly/usr.bin/finger/net.c
/dragonfly/usr.bin/finger/sprint.c
/dragonfly/usr.bin/finger/util.c
/dragonfly/usr.bin/getent/Makefile
/dragonfly/usr.bin/ktrace/ktrace.c
/dragonfly/usr.bin/ktrdump/ktrdump.c
/dragonfly/usr.bin/m4/Makefile
/dragonfly/usr.bin/m4/expr.c
/dragonfly/usr.bin/m4/main.c
/dragonfly/usr.bin/make/Makefile
/dragonfly/usr.bin/nl/Makefile
/dragonfly/usr.bin/nl/nl.c
/dragonfly/usr.bin/pctrack/pctrack.c
/dragonfly/usr.bin/pkg_radd/pkg_radd.sh
/dragonfly/usr.bin/pkg_search/pkg_search.1
/dragonfly/usr.bin/pkg_search/pkg_search.sh
/dragonfly/usr.bin/rpcgen/Makefile
/dragonfly/usr.bin/shlock/shlock.1
/dragonfly/usr.bin/sockstat/sockstat.c
/dragonfly/usr.bin/systat/Makefile
/dragonfly/usr.bin/systat/ip.c
/dragonfly/usr.bin/truncate/Makefile
/dragonfly/usr.bin/truncate/truncate.c
/dragonfly/usr.bin/undo/undo.1
/dragonfly/usr.bin/undo/undo.c
/dragonfly/usr.bin/vi/Makefile
/dragonfly/usr.bin/ypcat/Makefile
/dragonfly/usr.bin/ypcat/ypcat.c
/dragonfly/usr.bin/ypmatch/Makefile
/dragonfly/usr.bin/ypmatch/ypmatch.c
/dragonfly/usr.sbin/Makefile
/dragonfly/usr.sbin/asf/asf.8
/dragonfly/usr.sbin/asf/asf.c
/dragonfly/usr.sbin/dntpd/defs.h
/dragonfly/usr.sbin/dntpd/main.c
/dragonfly/usr.sbin/dntpd/socket.c
/dragonfly/usr.sbin/dntpd/system.c
/dragonfly/usr.sbin/lpr/common_source/rmjob.c
/dragonfly/usr.sbin/ppp/ppp.8.m4
/dragonfly/usr.sbin/route6d/misc/chkrt
/dragonfly/usr.sbin/rpc.yppasswdd/yppasswdd_extern.h
/dragonfly/usr.sbin/rpc.yppasswdd/yppasswdd_main.c
/dragonfly/usr.sbin/rpc.ypupdated/ypupdated_main.c
/dragonfly/usr.sbin/setkey/Makefile
/dragonfly/usr.sbin/vnconfig/vnconfig.c
/dragonfly/usr.sbin/yp_mkdb/yp_mkdb.c
/dragonfly/usr.sbin/yppush/yppush_main.c
/dragonfly/usr.sbin/ypserv/yp_extern.h
/dragonfly/usr.sbin/ypserv/yp_main.c
/dragonfly/usr.sbin/zic/private.h
/dragonfly/usr.sbin/zic/zdump/Makefile
/dragonfly/usr.sbin/zic/zic.c
/dragonfly/usr.sbin/zic/zic/Makefile
3d5a6e2005-Feb-2009 Simon Schubert <corecode@dragonflybsd.org>

define _PATH_DEFPATH to be reasonable, including sbins and /usr/pkg

sh already had this path set as default, but only sh. Now everybody
using _PATH_DEFPATH will get the right thing.

3bf8a2ef31-Jan-2009 Sascha Wildner <saw@online.de>

Remove some unexpanded $DragonFly$ IDs in our tree.


/dragonfly/Makefile_upgrade.inc
/dragonfly/bin/chmod/chmod.1
/dragonfly/bin/cp/cp.1
/dragonfly/bin/dd/dd.1
/dragonfly/bin/echo/echo.1
/dragonfly/bin/kill/kill.1
/dragonfly/bin/mkdir/mkdir.1
/dragonfly/bin/mv/mv.1
/dragonfly/bin/pwd/pwd.1
/dragonfly/bin/pwd/realpath.1
/dragonfly/bin/sleep/sleep.1
/dragonfly/bin/stty/stty.1
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/flow.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn.h
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_configure.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_disk.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_install.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_subpart_hammer.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/lib/libinstaller/diskutil.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/lib/libinstaller/mount.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/lib/libinstaller/survey.c
/dragonfly/contrib/cvs-1.12/src/tag.c
/dragonfly/contrib/gdtoa/README
/dragonfly/contrib/gdtoa/arithchk.c
/dragonfly/contrib/gdtoa/dmisc.c
/dragonfly/contrib/gdtoa/dtoa.c
/dragonfly/contrib/gdtoa/g_Qfmt.c
/dragonfly/contrib/gdtoa/g__fmt.c
/dragonfly/contrib/gdtoa/g_ddfmt.c
/dragonfly/contrib/gdtoa/g_dfmt.c
/dragonfly/contrib/gdtoa/g_ffmt.c
/dragonfly/contrib/gdtoa/g_xLfmt.c
/dragonfly/contrib/gdtoa/g_xfmt.c
/dragonfly/contrib/gdtoa/gdtoa.c
/dragonfly/contrib/gdtoa/gdtoa.h
/dragonfly/contrib/gdtoa/gdtoa_fltrnds.h
/dragonfly/contrib/gdtoa/gdtoaimp.h
/dragonfly/contrib/gdtoa/gethex.c
/dragonfly/contrib/gdtoa/gmisc.c
/dragonfly/contrib/gdtoa/hd_init.c
/dragonfly/contrib/gdtoa/hexnan.c
/dragonfly/contrib/gdtoa/makefile
/dragonfly/contrib/gdtoa/misc.c
/dragonfly/contrib/gdtoa/qnan.c
/dragonfly/contrib/gdtoa/smisc.c
/dragonfly/contrib/gdtoa/strtoIQ.c
/dragonfly/contrib/gdtoa/strtoId.c
/dragonfly/contrib/gdtoa/strtoIdd.c
/dragonfly/contrib/gdtoa/strtoIf.c
/dragonfly/contrib/gdtoa/strtoIg.c
/dragonfly/contrib/gdtoa/strtoIx.c
/dragonfly/contrib/gdtoa/strtoIxL.c
/dragonfly/contrib/gdtoa/strtod.c
/dragonfly/contrib/gdtoa/strtodI.c
/dragonfly/contrib/gdtoa/strtodg.c
/dragonfly/contrib/gdtoa/strtodnrp.c
/dragonfly/contrib/gdtoa/strtof.c
/dragonfly/contrib/gdtoa/strtopQ.c
/dragonfly/contrib/gdtoa/strtopd.c
/dragonfly/contrib/gdtoa/strtopdd.c
/dragonfly/contrib/gdtoa/strtopf.c
/dragonfly/contrib/gdtoa/strtopx.c
/dragonfly/contrib/gdtoa/strtopxL.c
/dragonfly/contrib/gdtoa/strtorQ.c
/dragonfly/contrib/gdtoa/strtord.c
/dragonfly/contrib/gdtoa/strtordd.c
/dragonfly/contrib/gdtoa/strtorf.c
/dragonfly/contrib/gdtoa/strtorx.c
/dragonfly/contrib/gdtoa/strtorxL.c
/dragonfly/contrib/gdtoa/sum.c
/dragonfly/contrib/gdtoa/ulp.c
/dragonfly/etc/Makefile
/dragonfly/etc/defaults/make.conf
/dragonfly/etc/netconfig
/dragonfly/etc/pam.d/Makefile
/dragonfly/etc/rc.d/lockd
/dragonfly/etc/rc.d/statd
netconfig.h
rpc/auth_kerb.h
rpc/clnt_soc.h
rpc/clnt_stat.h
rpc/nettype.h
rpc/raw.h
rpc/rpc_com.h
rpc/rpcb_clnt.h
rpc/rpcb_prot.x
rpc/rpcent.h
rpc/svc_dg.h
rpc/svc_soc.h
/dragonfly/lib/libc/include/reentrant.h
/dragonfly/lib/libc/rpc/LICENSE
/dragonfly/lib/libc/rpc/Makefile.inc
/dragonfly/lib/libc/rpc/README
/dragonfly/lib/libc/rpc/clnt_bcast.c
/dragonfly/lib/libc/rpc/clnt_dg.c
/dragonfly/lib/libc/rpc/clnt_vc.c
/dragonfly/lib/libc/rpc/getnetconfig.3
/dragonfly/lib/libc/rpc/getnetconfig.c
/dragonfly/lib/libc/rpc/getnetpath.3
/dragonfly/lib/libc/rpc/getnetpath.c
/dragonfly/lib/libc/rpc/mt_misc.c
/dragonfly/lib/libc/rpc/mt_misc.h
/dragonfly/lib/libc/rpc/netconfig.5
/dragonfly/lib/libc/rpc/rpc_clnt_auth.3
/dragonfly/lib/libc/rpc/rpc_clnt_calls.3
/dragonfly/lib/libc/rpc/rpc_clnt_create.3
/dragonfly/lib/libc/rpc/rpc_com.h
/dragonfly/lib/libc/rpc/rpc_generic.c
/dragonfly/lib/libc/rpc/rpc_soc.3
/dragonfly/lib/libc/rpc/rpc_soc.c
/dragonfly/lib/libc/rpc/rpc_svc_calls.3
/dragonfly/lib/libc/rpc/rpc_svc_create.3
/dragonfly/lib/libc/rpc/rpc_svc_err.3
/dragonfly/lib/libc/rpc/rpc_svc_reg.3
/dragonfly/lib/libc/rpc/rpc_xdr.3
/dragonfly/lib/libc/rpc/rpcb_clnt.c
/dragonfly/lib/libc/rpc/rpcb_prot.c
/dragonfly/lib/libc/rpc/rpcb_st_xdr.c
/dragonfly/lib/libc/rpc/rpcbind.3
/dragonfly/lib/libc/rpc/svc_dg.c
/dragonfly/lib/libc/rpc/svc_generic.c
/dragonfly/lib/libc/rpc/svc_simple.c
/dragonfly/lib/libc/rpc/svc_vc.c
/dragonfly/lib/libc/stdtime/strftime.3
/dragonfly/lib/libc/stdtime/strftime.c
/dragonfly/lib/libc/sys/sigaction.2
/dragonfly/lib/libc/sys/stat.2
/dragonfly/lib/libc/sys/statfs.2
/dragonfly/lib/libstand/hammerread.c
/dragonfly/lib/libusbhid/usbhid.3
/dragonfly/lib/pam_module/pam_lastlog/pam_lastlog.8
/dragonfly/libexec/comsat/comsat.8
/dragonfly/libexec/comsat/comsat.c
/dragonfly/libexec/fingerd/Makefile
/dragonfly/libexec/fingerd/fingerd.8
/dragonfly/libexec/fingerd/fingerd.c
/dragonfly/libexec/ftpd/ftpd.8
/dragonfly/nrelease/Makefile
/dragonfly/nrelease/installer/etc/issue
/dragonfly/nrelease/installer/usr/local/share/dfuibe_installer/sources.conf
/dragonfly/nrelease/root/README
/dragonfly/sbin/hammer/cmd_cleanup.c
/dragonfly/sbin/hammer/cmd_pseudofs.c
/dragonfly/sbin/hammer/cmd_reblock.c
/dragonfly/sbin/hammer/cmd_softprune.c
/dragonfly/sbin/hammer/hammer.8
/dragonfly/sbin/hammer/hammer.c
/dragonfly/sbin/hammer/hammer.h
/dragonfly/sbin/kldload/kldload.8
/dragonfly/sbin/nfsiod/nfsiod.8
/dragonfly/sbin/route/route.8
/dragonfly/sbin/route/route.c
/dragonfly/share/examples/mdoc/example.1
/dragonfly/share/installer/cmdnames.conf
/dragonfly/share/man/man4/Makefile
/dragonfly/share/man/man4/acpi_asus.4
/dragonfly/share/man/man5/make.conf.5
/dragonfly/share/man/man7/release.7
/dragonfly/share/man/man9/priv.9
/dragonfly/share/misc/mdoc.template
/dragonfly/share/mk/bsd.sys.mk
/dragonfly/share/zoneinfo/asia
/dragonfly/share/zoneinfo/backward
/dragonfly/share/zoneinfo/europe
/dragonfly/share/zoneinfo/northamerica
/dragonfly/share/zoneinfo/yearistype.sh
/dragonfly/share/zoneinfo/zone.tab
/dragonfly/sys/boot/common/loader.8
/dragonfly/sys/boot/pc32/boot0/Makefile
/dragonfly/sys/boot/pc32/mbr/mbr.S
/dragonfly/sys/bus/cam/cam_periph.c
/dragonfly/sys/bus/cam/cam_periph.h
/dragonfly/sys/conf/files
/dragonfly/sys/config/LINT
/dragonfly/sys/dev/acpica5/Makefile
/dragonfly/sys/dev/acpica5/acpi_asus/Makefile
/dragonfly/sys/dev/acpica5/acpi_asus/acpi_asus.c
/dragonfly/sys/dev/disk/nata/ata-all.c
/dragonfly/sys/dev/disk/nata/ata-all.h
/dragonfly/sys/dev/disk/nata/ata-pci.c
/dragonfly/sys/dev/disk/nata/ata-queue.c
/dragonfly/sys/dev/netif/bce/if_bce.c
/dragonfly/sys/dev/sound/pci/hda/hdac.c
/dragonfly/sys/kern/kern_exec.c
/dragonfly/sys/kern/kern_sig.c
/dragonfly/sys/kern/uipc_msg.c
/dragonfly/sys/kern/uipc_socket.c
/dragonfly/sys/kern/vfs_default.c
/dragonfly/sys/kern/vfs_subr.c
/dragonfly/sys/kern/vfs_syscalls.c
/dragonfly/sys/kern/vfs_vopops.c
/dragonfly/sys/netinet/tcp_syncache.c
/dragonfly/sys/sys/socketops.h
/dragonfly/sys/sys/socketvar.h
/dragonfly/sys/sys/thread.h
/dragonfly/sys/sys/vfsops.h
/dragonfly/sys/sys/vnode.h
/dragonfly/sys/vfs/hammer/hammer.h
/dragonfly/sys/vfs/hammer/hammer_blockmap.c
/dragonfly/sys/vfs/hammer/hammer_cursor.c
/dragonfly/sys/vfs/hammer/hammer_disk.h
/dragonfly/sys/vfs/hammer/hammer_inode.c
/dragonfly/sys/vfs/hammer/hammer_io.c
/dragonfly/sys/vfs/hammer/hammer_mirror.c
/dragonfly/sys/vfs/hammer/hammer_ondisk.c
/dragonfly/sys/vfs/hammer/hammer_pfs.c
/dragonfly/sys/vfs/hammer/hammer_prune.c
/dragonfly/sys/vfs/hammer/hammer_reblock.c
/dragonfly/sys/vfs/hammer/hammer_vfsops.c
/dragonfly/sys/vfs/hammer/hammer_vnops.c
/dragonfly/sys/vfs/msdosfs/msdosfs_vfsops.c
/dragonfly/sys/vfs/msdosfs/msdosfsmount.h
/dragonfly/sys/vfs/udf/udf_vnops.c
/dragonfly/sys/vfs/ufs/ufs_vnops.c
/dragonfly/sys/vm/vm_mmap.c
/dragonfly/test/sysperf/socketpair.c
/dragonfly/usr.bin/asa/asa.1
/dragonfly/usr.bin/cksum/Makefile
/dragonfly/usr.bin/cksum/cksum.1
/dragonfly/usr.bin/cksum/cksum.c
/dragonfly/usr.bin/cksum/crc.c
/dragonfly/usr.bin/cksum/crc32.c
/dragonfly/usr.bin/cksum/extern.h
/dragonfly/usr.bin/cksum/print.c
/dragonfly/usr.bin/cksum/sum1.c
/dragonfly/usr.bin/cksum/sum2.c
/dragonfly/usr.bin/column/column.1
/dragonfly/usr.bin/comm/comm.1
/dragonfly/usr.bin/compress/compress.1
/dragonfly/usr.bin/csplit/csplit.1
/dragonfly/usr.bin/expand/expand.1
/dragonfly/usr.bin/getconf/getconf.1
/dragonfly/usr.bin/head/head.1
/dragonfly/usr.bin/hexdump/hexdump.1
/dragonfly/usr.bin/hexdump/od.1
/dragonfly/usr.bin/iconv/iconv.1
/dragonfly/usr.bin/id/groups.1
/dragonfly/usr.bin/id/id.1
/dragonfly/usr.bin/id/whoami.1
/dragonfly/usr.bin/join/join.1
/dragonfly/usr.bin/jot/jot.1
/dragonfly/usr.bin/locale/locale.1
/dragonfly/usr.bin/logger/logger.1
/dragonfly/usr.bin/logname/logname.1
/dragonfly/usr.bin/make/tests/basic/t0/expected.status
/dragonfly/usr.bin/make/tests/basic/t0/expected.stderr
/dragonfly/usr.bin/make/tests/basic/t0/expected.stdout
/dragonfly/usr.bin/make/tests/basic/t1/expected.status
/dragonfly/usr.bin/make/tests/basic/t1/expected.stderr
/dragonfly/usr.bin/make/tests/basic/t1/expected.stdout
/dragonfly/usr.bin/make/tests/basic/t2/expected.status
/dragonfly/usr.bin/make/tests/basic/t2/expected.stderr
/dragonfly/usr.bin/make/tests/basic/t2/expected.stdout
/dragonfly/usr.bin/make/tests/common.sh
/dragonfly/usr.bin/make/tests/variables/t0/expected.status
/dragonfly/usr.bin/make/tests/variables/t0/expected.stderr
/dragonfly/usr.bin/make/tests/variables/t0/expected.stdout
/dragonfly/usr.bin/mkfifo/mkfifo.1
/dragonfly/usr.bin/nl/nl.1
/dragonfly/usr.bin/paste/paste.1
/dragonfly/usr.bin/pathchk/pathchk.1
/dragonfly/usr.bin/printenv/printenv.1
/dragonfly/usr.bin/printf/printf.1
/dragonfly/usr.bin/stat/stat.1
/dragonfly/usr.bin/tabs/tabs.1
/dragonfly/usr.bin/tail/tail.1
/dragonfly/usr.bin/tee/tee.1
/dragonfly/usr.bin/touch/touch.1
/dragonfly/usr.bin/tr/tr.1
/dragonfly/usr.bin/truncate/truncate.1
/dragonfly/usr.bin/uname/uname.1
/dragonfly/usr.bin/uniq/uniq.1
/dragonfly/usr.bin/wc/wc.1
/dragonfly/usr.bin/who/who.1
/dragonfly/usr.bin/xinstall/install.1
/dragonfly/usr.sbin/ac/ac.8
/dragonfly/usr.sbin/boot0cfg/boot0cfg.8
/dragonfly/usr.sbin/bootparamd/bootparamd/README
/dragonfly/usr.sbin/btxld/btxld.8
/dragonfly/usr.sbin/chown/chgrp.1
/dragonfly/usr.sbin/chown/chown.8
/dragonfly/usr.sbin/i4b/isdndecode/layer3_subr.c
/dragonfly/usr.sbin/i4b/isdntrace/q931_util.c
/dragonfly/usr.sbin/jail/jail.8
/dragonfly/usr.sbin/kgzip/kgzip.8
/dragonfly/usr.sbin/lpr/common_source/common.c
/dragonfly/usr.sbin/makewhatis/makewhatis.8
/dragonfly/usr.sbin/mtree/mtree.8
/dragonfly/usr.sbin/ngctl/ngctl.8
/dragonfly/usr.sbin/rpc.lockd/lock_proc.c
/dragonfly/usr.sbin/rpc.lockd/lockd.h
/dragonfly/usr.sbin/rpc.lockd/lockd_lock.c
/dragonfly/usr.sbin/rpc.lockd/lockd_lock.h
/dragonfly/usr.sbin/rpcbind/Makefile
/dragonfly/usr.sbin/rpcbind/check_bound.c
/dragonfly/usr.sbin/rpcbind/pmap_svc.c
/dragonfly/usr.sbin/rpcbind/rpcb_stat.c
/dragonfly/usr.sbin/rpcbind/rpcb_svc.c
/dragonfly/usr.sbin/rpcbind/rpcb_svc_4.c
/dragonfly/usr.sbin/rpcbind/rpcb_svc_com.c
/dragonfly/usr.sbin/rpcbind/rpcbind.8
/dragonfly/usr.sbin/rpcbind/rpcbind.c
/dragonfly/usr.sbin/rpcbind/rpcbind.h
/dragonfly/usr.sbin/rpcbind/security.c
/dragonfly/usr.sbin/rpcbind/util.c
/dragonfly/usr.sbin/rpcbind/warmstart.c
/dragonfly/usr.sbin/rtadvd/rtadvd.8
/dragonfly/usr.sbin/rtsold/rtsold.8
/dragonfly/usr.sbin/sa/sa.8
/dragonfly/usr.sbin/zic/zdump.c
e6cd39da11-Jan-2009 Simon Schubert <corecode@dragonflybsd.org>

Install ppbus headers.


/dragonfly/Makefile.inc1
/dragonfly/Makefile_upgrade.inc
/dragonfly/contrib/binutils-2.17/ld/emulparams/sort-sections.sh
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_install.c
/dragonfly/contrib/gcc-4.1/gcc/c-format.c
/dragonfly/contrib/gcc-4.1/gcc/gcc.c
/dragonfly/contrib/gcc-4.1/gcc/system.h
/dragonfly/contrib/pam_passwdqc/LICENSE
/dragonfly/contrib/pam_passwdqc/README
/dragonfly/contrib/pam_passwdqc/README.DELETED
/dragonfly/contrib/pam_passwdqc/pam_macros.h
/dragonfly/contrib/pam_passwdqc/pam_passwdqc.8
/dragonfly/contrib/pam_passwdqc/pam_passwdqc.c
/dragonfly/contrib/pam_passwdqc/passwdqc.h
/dragonfly/contrib/pam_passwdqc/passwdqc_check.c
/dragonfly/contrib/pam_passwdqc/passwdqc_random.c
/dragonfly/contrib/pam_passwdqc/wordset_4k.c
/dragonfly/crypto/openssl/CHANGES
/dragonfly/crypto/openssl/FAQ
/dragonfly/crypto/openssl/LICENSE
/dragonfly/crypto/openssl/NEWS
/dragonfly/crypto/openssl/PROBLEMS
/dragonfly/crypto/openssl/README
/dragonfly/crypto/openssl/README.ASN1
/dragonfly/crypto/openssl/README.DELETED
/dragonfly/crypto/openssl/README.DRAGONFLY
/dragonfly/crypto/openssl/README.ENGINE
/dragonfly/crypto/openssl/apps/CA.pl
/dragonfly/crypto/openssl/apps/CA.sh
/dragonfly/crypto/openssl/apps/app_rand.c
/dragonfly/crypto/openssl/apps/apps.c
/dragonfly/crypto/openssl/apps/apps.h
/dragonfly/crypto/openssl/apps/asn1pars.c
/dragonfly/crypto/openssl/apps/ca.c
/dragonfly/crypto/openssl/apps/ciphers.c
/dragonfly/crypto/openssl/apps/cms.c
/dragonfly/crypto/openssl/apps/crl.c
/dragonfly/crypto/openssl/apps/crl2p7.c
/dragonfly/crypto/openssl/apps/dgst.c
/dragonfly/crypto/openssl/apps/dh.c
/dragonfly/crypto/openssl/apps/dhparam.c
/dragonfly/crypto/openssl/apps/dsa.c
/dragonfly/crypto/openssl/apps/dsaparam.c
/dragonfly/crypto/openssl/apps/ec.c
/dragonfly/crypto/openssl/apps/ecparam.c
/dragonfly/crypto/openssl/apps/enc.c
/dragonfly/crypto/openssl/apps/engine.c
/dragonfly/crypto/openssl/apps/errstr.c
/dragonfly/crypto/openssl/apps/gendh.c
/dragonfly/crypto/openssl/apps/gendsa.c
/dragonfly/crypto/openssl/apps/genrsa.c
/dragonfly/crypto/openssl/apps/nseq.c
/dragonfly/crypto/openssl/apps/ocsp.c
/dragonfly/crypto/openssl/apps/openssl.c
/dragonfly/crypto/openssl/apps/openssl.cnf
/dragonfly/crypto/openssl/apps/passwd.c
/dragonfly/crypto/openssl/apps/pkcs12.c
/dragonfly/crypto/openssl/apps/pkcs7.c
/dragonfly/crypto/openssl/apps/pkcs8.c
/dragonfly/crypto/openssl/apps/prime.c
/dragonfly/crypto/openssl/apps/progs.h
/dragonfly/crypto/openssl/apps/rand.c
/dragonfly/crypto/openssl/apps/req.c
/dragonfly/crypto/openssl/apps/rsa.c
/dragonfly/crypto/openssl/apps/rsautl.c
/dragonfly/crypto/openssl/apps/s_apps.h
/dragonfly/crypto/openssl/apps/s_cb.c
/dragonfly/crypto/openssl/apps/s_client.c
/dragonfly/crypto/openssl/apps/s_server.c
/dragonfly/crypto/openssl/apps/s_socket.c
/dragonfly/crypto/openssl/apps/s_time.c
/dragonfly/crypto/openssl/apps/sess_id.c
/dragonfly/crypto/openssl/apps/smime.c
/dragonfly/crypto/openssl/apps/speed.c
/dragonfly/crypto/openssl/apps/spkac.c
/dragonfly/crypto/openssl/apps/testdsa.h
/dragonfly/crypto/openssl/apps/testrsa.h
/dragonfly/crypto/openssl/apps/timeouts.h
/dragonfly/crypto/openssl/apps/verify.c
/dragonfly/crypto/openssl/apps/version.c
/dragonfly/crypto/openssl/apps/x509.c
/dragonfly/crypto/openssl/crypto/LPdir_unix.c
/dragonfly/crypto/openssl/crypto/aes/README
/dragonfly/crypto/openssl/crypto/aes/aes.h
/dragonfly/crypto/openssl/crypto/aes/aes_cbc.c
/dragonfly/crypto/openssl/crypto/aes/aes_cfb.c
/dragonfly/crypto/openssl/crypto/aes/aes_core.c
/dragonfly/crypto/openssl/crypto/aes/aes_ctr.c
/dragonfly/crypto/openssl/crypto/aes/aes_ecb.c
/dragonfly/crypto/openssl/crypto/aes/aes_ige.c
/dragonfly/crypto/openssl/crypto/aes/aes_locl.h
/dragonfly/crypto/openssl/crypto/aes/aes_misc.c
/dragonfly/crypto/openssl/crypto/aes/aes_ofb.c
/dragonfly/crypto/openssl/crypto/aes/aes_wrap.c
/dragonfly/crypto/openssl/crypto/asn1/a_bitstr.c
/dragonfly/crypto/openssl/crypto/asn1/a_bool.c
/dragonfly/crypto/openssl/crypto/asn1/a_bytes.c
/dragonfly/crypto/openssl/crypto/asn1/a_d2i_fp.c
/dragonfly/crypto/openssl/crypto/asn1/a_digest.c
/dragonfly/crypto/openssl/crypto/asn1/a_dup.c
/dragonfly/crypto/openssl/crypto/asn1/a_enum.c
/dragonfly/crypto/openssl/crypto/asn1/a_gentm.c
/dragonfly/crypto/openssl/crypto/asn1/a_hdr.c
/dragonfly/crypto/openssl/crypto/asn1/a_i2d_fp.c
/dragonfly/crypto/openssl/crypto/asn1/a_int.c
/dragonfly/crypto/openssl/crypto/asn1/a_mbstr.c
/dragonfly/crypto/openssl/crypto/asn1/a_meth.c
/dragonfly/crypto/openssl/crypto/asn1/a_object.c
/dragonfly/crypto/openssl/crypto/asn1/a_octet.c
/dragonfly/crypto/openssl/crypto/asn1/a_print.c
/dragonfly/crypto/openssl/crypto/asn1/a_set.c
/dragonfly/crypto/openssl/crypto/asn1/a_sign.c
/dragonfly/crypto/openssl/crypto/asn1/a_strex.c
/dragonfly/crypto/openssl/crypto/asn1/a_strnid.c
/dragonfly/crypto/openssl/crypto/asn1/a_time.c
/dragonfly/crypto/openssl/crypto/asn1/a_type.c
/dragonfly/crypto/openssl/crypto/asn1/a_utctm.c
/dragonfly/crypto/openssl/crypto/asn1/a_utf8.c
/dragonfly/crypto/openssl/crypto/asn1/a_verify.c
/dragonfly/crypto/openssl/crypto/asn1/asn1.h
/dragonfly/crypto/openssl/crypto/asn1/asn1_err.c
/dragonfly/crypto/openssl/crypto/asn1/asn1_gen.c
/dragonfly/crypto/openssl/crypto/asn1/asn1_lib.c
/dragonfly/crypto/openssl/crypto/asn1/asn1_mac.h
/dragonfly/crypto/openssl/crypto/asn1/asn1_par.c
/dragonfly/crypto/openssl/crypto/asn1/asn1t.h
/dragonfly/crypto/openssl/crypto/asn1/asn_mime.c
/dragonfly/crypto/openssl/crypto/asn1/asn_moid.c
/dragonfly/crypto/openssl/crypto/asn1/asn_pack.c
/dragonfly/crypto/openssl/crypto/asn1/charmap.h
/dragonfly/crypto/openssl/crypto/asn1/d2i_pr.c
/dragonfly/crypto/openssl/crypto/asn1/d2i_pu.c
/dragonfly/crypto/openssl/crypto/asn1/evp_asn1.c
/dragonfly/crypto/openssl/crypto/asn1/f_enum.c
/dragonfly/crypto/openssl/crypto/asn1/f_int.c
/dragonfly/crypto/openssl/crypto/asn1/f_string.c
/dragonfly/crypto/openssl/crypto/asn1/i2d_pr.c
/dragonfly/crypto/openssl/crypto/asn1/i2d_pu.c
/dragonfly/crypto/openssl/crypto/asn1/n_pkey.c
/dragonfly/crypto/openssl/crypto/asn1/nsseq.c
/dragonfly/crypto/openssl/crypto/asn1/p5_pbe.c
/dragonfly/crypto/openssl/crypto/asn1/p5_pbev2.c
/dragonfly/crypto/openssl/crypto/asn1/p8_pkey.c
/dragonfly/crypto/openssl/crypto/asn1/t_bitst.c
/dragonfly/crypto/openssl/crypto/asn1/t_crl.c
/dragonfly/crypto/openssl/crypto/asn1/t_pkey.c
/dragonfly/crypto/openssl/crypto/asn1/t_req.c
/dragonfly/crypto/openssl/crypto/asn1/t_spki.c
/dragonfly/crypto/openssl/crypto/asn1/t_x509.c
/dragonfly/crypto/openssl/crypto/asn1/t_x509a.c
/dragonfly/crypto/openssl/crypto/asn1/tasn_dec.c
/dragonfly/crypto/openssl/crypto/asn1/tasn_enc.c
/dragonfly/crypto/openssl/crypto/asn1/tasn_fre.c
/dragonfly/crypto/openssl/crypto/asn1/tasn_new.c
/dragonfly/crypto/openssl/crypto/asn1/tasn_typ.c
/dragonfly/crypto/openssl/crypto/asn1/tasn_utl.c
/dragonfly/crypto/openssl/crypto/asn1/x_algor.c
/dragonfly/crypto/openssl/crypto/asn1/x_attrib.c
/dragonfly/crypto/openssl/crypto/asn1/x_bignum.c
/dragonfly/crypto/openssl/crypto/asn1/x_crl.c
/dragonfly/crypto/openssl/crypto/asn1/x_exten.c
/dragonfly/crypto/openssl/crypto/asn1/x_info.c
/dragonfly/crypto/openssl/crypto/asn1/x_long.c
/dragonfly/crypto/openssl/crypto/asn1/x_name.c
/dragonfly/crypto/openssl/crypto/asn1/x_pkey.c
/dragonfly/crypto/openssl/crypto/asn1/x_pubkey.c
/dragonfly/crypto/openssl/crypto/asn1/x_req.c
/dragonfly/crypto/openssl/crypto/asn1/x_sig.c
/dragonfly/crypto/openssl/crypto/asn1/x_spki.c
/dragonfly/crypto/openssl/crypto/asn1/x_val.c
/dragonfly/crypto/openssl/crypto/asn1/x_x509.c
/dragonfly/crypto/openssl/crypto/asn1/x_x509a.c
/dragonfly/crypto/openssl/crypto/bf/COPYRIGHT
/dragonfly/crypto/openssl/crypto/bf/README
/dragonfly/crypto/openssl/crypto/bf/VERSION
/dragonfly/crypto/openssl/crypto/bf/bf_cfb64.c
/dragonfly/crypto/openssl/crypto/bf/bf_ecb.c
/dragonfly/crypto/openssl/crypto/bf/bf_enc.c
/dragonfly/crypto/openssl/crypto/bf/bf_locl.h
/dragonfly/crypto/openssl/crypto/bf/bf_ofb64.c
/dragonfly/crypto/openssl/crypto/bf/bf_pi.h
/dragonfly/crypto/openssl/crypto/bf/bf_skey.c
/dragonfly/crypto/openssl/crypto/bf/blowfish.h
/dragonfly/crypto/openssl/crypto/bio/b_dump.c
/dragonfly/crypto/openssl/crypto/bio/b_print.c
/dragonfly/crypto/openssl/crypto/bio/b_sock.c
/dragonfly/crypto/openssl/crypto/bio/bf_buff.c
/dragonfly/crypto/openssl/crypto/bio/bf_lbuf.c
/dragonfly/crypto/openssl/crypto/bio/bf_nbio.c
/dragonfly/crypto/openssl/crypto/bio/bf_null.c
/dragonfly/crypto/openssl/crypto/bio/bio.h
/dragonfly/crypto/openssl/crypto/bio/bio_cb.c
/dragonfly/crypto/openssl/crypto/bio/bio_err.c
/dragonfly/crypto/openssl/crypto/bio/bio_lcl.h
/dragonfly/crypto/openssl/crypto/bio/bio_lib.c
/dragonfly/crypto/openssl/crypto/bio/bss_acpt.c
/dragonfly/crypto/openssl/crypto/bio/bss_bio.c
/dragonfly/crypto/openssl/crypto/bio/bss_conn.c
/dragonfly/crypto/openssl/crypto/bio/bss_dgram.c
/dragonfly/crypto/openssl/crypto/bio/bss_fd.c
/dragonfly/crypto/openssl/crypto/bio/bss_file.c
/dragonfly/crypto/openssl/crypto/bio/bss_log.c
/dragonfly/crypto/openssl/crypto/bio/bss_mem.c
/dragonfly/crypto/openssl/crypto/bio/bss_null.c
/dragonfly/crypto/openssl/crypto/bio/bss_sock.c
/dragonfly/crypto/openssl/crypto/bn/bn.h
/dragonfly/crypto/openssl/crypto/bn/bn_add.c
/dragonfly/crypto/openssl/crypto/bn/bn_asm.c
/dragonfly/crypto/openssl/crypto/bn/bn_blind.c
/dragonfly/crypto/openssl/crypto/bn/bn_const.c
/dragonfly/crypto/openssl/crypto/bn/bn_ctx.c
/dragonfly/crypto/openssl/crypto/bn/bn_depr.c
/dragonfly/crypto/openssl/crypto/bn/bn_div.c
/dragonfly/crypto/openssl/crypto/bn/bn_err.c
/dragonfly/crypto/openssl/crypto/bn/bn_exp.c
/dragonfly/crypto/openssl/crypto/bn/bn_exp2.c
/dragonfly/crypto/openssl/crypto/bn/bn_gcd.c
/dragonfly/crypto/openssl/crypto/bn/bn_gf2m.c
/dragonfly/crypto/openssl/crypto/bn/bn_kron.c
/dragonfly/crypto/openssl/crypto/bn/bn_lcl.h
/dragonfly/crypto/openssl/crypto/bn/bn_lib.c
/dragonfly/crypto/openssl/crypto/bn/bn_mod.c
/dragonfly/crypto/openssl/crypto/bn/bn_mont.c
/dragonfly/crypto/openssl/crypto/bn/bn_mpi.c
/dragonfly/crypto/openssl/crypto/bn/bn_mul.c
/dragonfly/crypto/openssl/crypto/bn/bn_nist.c
/dragonfly/crypto/openssl/crypto/bn/bn_opt.c
/dragonfly/crypto/openssl/crypto/bn/bn_prime.c
/dragonfly/crypto/openssl/crypto/bn/bn_prime.h
/dragonfly/crypto/openssl/crypto/bn/bn_print.c
/dragonfly/crypto/openssl/crypto/bn/bn_rand.c
/dragonfly/crypto/openssl/crypto/bn/bn_recp.c
/dragonfly/crypto/openssl/crypto/bn/bn_shift.c
/dragonfly/crypto/openssl/crypto/bn/bn_sqr.c
/dragonfly/crypto/openssl/crypto/bn/bn_sqrt.c
/dragonfly/crypto/openssl/crypto/bn/bn_word.c
/dragonfly/crypto/openssl/crypto/bn/bn_x931p.c
/dragonfly/crypto/openssl/crypto/bn/todo
/dragonfly/crypto/openssl/crypto/buffer/buf_err.c
/dragonfly/crypto/openssl/crypto/buffer/buf_str.c
/dragonfly/crypto/openssl/crypto/buffer/buffer.c
/dragonfly/crypto/openssl/crypto/buffer/buffer.h
/dragonfly/crypto/openssl/crypto/camellia/camellia.c
/dragonfly/crypto/openssl/crypto/camellia/camellia.h
/dragonfly/crypto/openssl/crypto/camellia/cmll_cbc.c
/dragonfly/crypto/openssl/crypto/camellia/cmll_cfb.c
/dragonfly/crypto/openssl/crypto/camellia/cmll_ctr.c
/dragonfly/crypto/openssl/crypto/camellia/cmll_ecb.c
/dragonfly/crypto/openssl/crypto/camellia/cmll_locl.h
/dragonfly/crypto/openssl/crypto/camellia/cmll_misc.c
/dragonfly/crypto/openssl/crypto/camellia/cmll_ofb.c
/dragonfly/crypto/openssl/crypto/cast/c_cfb64.c
/dragonfly/crypto/openssl/crypto/cast/c_ecb.c
/dragonfly/crypto/openssl/crypto/cast/c_enc.c
/dragonfly/crypto/openssl/crypto/cast/c_ofb64.c
/dragonfly/crypto/openssl/crypto/cast/c_skey.c
/dragonfly/crypto/openssl/crypto/cast/cast.h
/dragonfly/crypto/openssl/crypto/cast/cast_lcl.h
/dragonfly/crypto/openssl/crypto/cast/cast_s.h
/dragonfly/crypto/openssl/crypto/cms/cms.h
/dragonfly/crypto/openssl/crypto/cms/cms_asn1.c
/dragonfly/crypto/openssl/crypto/cms/cms_att.c
/dragonfly/crypto/openssl/crypto/cms/cms_cd.c
/dragonfly/crypto/openssl/crypto/cms/cms_dd.c
/dragonfly/crypto/openssl/crypto/cms/cms_enc.c
/dragonfly/crypto/openssl/crypto/cms/cms_env.c
/dragonfly/crypto/openssl/crypto/cms/cms_err.c
/dragonfly/crypto/openssl/crypto/cms/cms_ess.c
/dragonfly/crypto/openssl/crypto/cms/cms_io.c
/dragonfly/crypto/openssl/crypto/cms/cms_lcl.h
/dragonfly/crypto/openssl/crypto/cms/cms_lib.c
/dragonfly/crypto/openssl/crypto/cms/cms_sd.c
/dragonfly/crypto/openssl/crypto/cms/cms_smime.c
/dragonfly/crypto/openssl/crypto/comp/c_rle.c
/dragonfly/crypto/openssl/crypto/comp/c_zlib.c
/dragonfly/crypto/openssl/crypto/comp/comp.h
/dragonfly/crypto/openssl/crypto/comp/comp_err.c
/dragonfly/crypto/openssl/crypto/comp/comp_lib.c
/dragonfly/crypto/openssl/crypto/conf/README
/dragonfly/crypto/openssl/crypto/conf/conf.h
/dragonfly/crypto/openssl/crypto/conf/conf_api.c
/dragonfly/crypto/openssl/crypto/conf/conf_api.h
/dragonfly/crypto/openssl/crypto/conf/conf_def.c
/dragonfly/crypto/openssl/crypto/conf/conf_def.h
/dragonfly/crypto/openssl/crypto/conf/conf_err.c
/dragonfly/crypto/openssl/crypto/conf/conf_lib.c
/dragonfly/crypto/openssl/crypto/conf/conf_mall.c
/dragonfly/crypto/openssl/crypto/conf/conf_mod.c
/dragonfly/crypto/openssl/crypto/conf/conf_sap.c
/dragonfly/crypto/openssl/crypto/cpt_err.c
/dragonfly/crypto/openssl/crypto/cryptlib.c
/dragonfly/crypto/openssl/crypto/cryptlib.h
/dragonfly/crypto/openssl/crypto/crypto.h
/dragonfly/crypto/openssl/crypto/cversion.c
/dragonfly/crypto/openssl/crypto/des/COPYRIGHT
/dragonfly/crypto/openssl/crypto/des/README
/dragonfly/crypto/openssl/crypto/des/VERSION
/dragonfly/crypto/openssl/crypto/des/cbc3_enc.c
/dragonfly/crypto/openssl/crypto/des/cbc_cksm.c
/dragonfly/crypto/openssl/crypto/des/cbc_enc.c
/dragonfly/crypto/openssl/crypto/des/cfb64ede.c
/dragonfly/crypto/openssl/crypto/des/cfb64enc.c
/dragonfly/crypto/openssl/crypto/des/cfb_enc.c
/dragonfly/crypto/openssl/crypto/des/des.h
/dragonfly/crypto/openssl/crypto/des/des_enc.c
/dragonfly/crypto/openssl/crypto/des/des_lib.c
/dragonfly/crypto/openssl/crypto/des/des_locl.h
/dragonfly/crypto/openssl/crypto/des/des_old.c
/dragonfly/crypto/openssl/crypto/des/des_old.h
/dragonfly/crypto/openssl/crypto/des/des_old2.c
/dragonfly/crypto/openssl/crypto/des/des_ver.h
/dragonfly/crypto/openssl/crypto/des/ecb3_enc.c
/dragonfly/crypto/openssl/crypto/des/ecb_enc.c
/dragonfly/crypto/openssl/crypto/des/ede_cbcm_enc.c
/dragonfly/crypto/openssl/crypto/des/enc_read.c
/dragonfly/crypto/openssl/crypto/des/enc_writ.c
/dragonfly/crypto/openssl/crypto/des/fcrypt.c
/dragonfly/crypto/openssl/crypto/des/fcrypt_b.c
/dragonfly/crypto/openssl/crypto/des/ncbc_enc.c
/dragonfly/crypto/openssl/crypto/des/ofb64ede.c
/dragonfly/crypto/openssl/crypto/des/ofb64enc.c
/dragonfly/crypto/openssl/crypto/des/ofb_enc.c
/dragonfly/crypto/openssl/crypto/des/pcbc_enc.c
/dragonfly/crypto/openssl/crypto/des/qud_cksm.c
/dragonfly/crypto/openssl/crypto/des/rand_key.c
/dragonfly/crypto/openssl/crypto/des/read2pwd.c
/dragonfly/crypto/openssl/crypto/des/rpc_des.h
/dragonfly/crypto/openssl/crypto/des/rpc_enc.c
/dragonfly/crypto/openssl/crypto/des/set_key.c
/dragonfly/crypto/openssl/crypto/des/spr.h
/dragonfly/crypto/openssl/crypto/des/str2key.c
/dragonfly/crypto/openssl/crypto/des/xcbc_enc.c
/dragonfly/crypto/openssl/crypto/dh/dh.h
/dragonfly/crypto/openssl/crypto/dh/dh_asn1.c
/dragonfly/crypto/openssl/crypto/dh/dh_check.c
/dragonfly/crypto/openssl/crypto/dh/dh_depr.c
/dragonfly/crypto/openssl/crypto/dh/dh_err.c
/dragonfly/crypto/openssl/crypto/dh/dh_gen.c
/dragonfly/crypto/openssl/crypto/dh/dh_key.c
/dragonfly/crypto/openssl/crypto/dh/dh_lib.c
/dragonfly/crypto/openssl/crypto/dsa/README
/dragonfly/crypto/openssl/crypto/dsa/dsa.h
/dragonfly/crypto/openssl/crypto/dsa/dsa_asn1.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_depr.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_err.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_gen.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_key.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_lib.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_ossl.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_sign.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_utl.c
/dragonfly/crypto/openssl/crypto/dsa/dsa_vrf.c
/dragonfly/crypto/openssl/crypto/dsa/fips186a.txt
/dragonfly/crypto/openssl/crypto/dso/README
/dragonfly/crypto/openssl/crypto/dso/dso.h
/dragonfly/crypto/openssl/crypto/dso/dso_dl.c
/dragonfly/crypto/openssl/crypto/dso/dso_dlfcn.c
/dragonfly/crypto/openssl/crypto/dso/dso_err.c
/dragonfly/crypto/openssl/crypto/dso/dso_lib.c
/dragonfly/crypto/openssl/crypto/dso/dso_null.c
/dragonfly/crypto/openssl/crypto/dso/dso_openssl.c
/dragonfly/crypto/openssl/crypto/dyn_lck.c
/dragonfly/crypto/openssl/crypto/ebcdic.c
/dragonfly/crypto/openssl/crypto/ebcdic.h
/dragonfly/crypto/openssl/crypto/ec/ec.h
/dragonfly/crypto/openssl/crypto/ec/ec2_mult.c
/dragonfly/crypto/openssl/crypto/ec/ec2_smpl.c
/dragonfly/crypto/openssl/crypto/ec/ec2_smpt.c
/dragonfly/crypto/openssl/crypto/ec/ec_asn1.c
/dragonfly/crypto/openssl/crypto/ec/ec_check.c
/dragonfly/crypto/openssl/crypto/ec/ec_curve.c
/dragonfly/crypto/openssl/crypto/ec/ec_cvt.c
/dragonfly/crypto/openssl/crypto/ec/ec_err.c
/dragonfly/crypto/openssl/crypto/ec/ec_key.c
/dragonfly/crypto/openssl/crypto/ec/ec_lcl.h
/dragonfly/crypto/openssl/crypto/ec/ec_lib.c
/dragonfly/crypto/openssl/crypto/ec/ec_mult.c
/dragonfly/crypto/openssl/crypto/ec/ec_print.c
/dragonfly/crypto/openssl/crypto/ec/ecp_mont.c
/dragonfly/crypto/openssl/crypto/ec/ecp_nist.c
/dragonfly/crypto/openssl/crypto/ec/ecp_smpl.c
/dragonfly/crypto/openssl/crypto/ecdh/ecdh.h
/dragonfly/crypto/openssl/crypto/ecdh/ech_err.c
/dragonfly/crypto/openssl/crypto/ecdh/ech_key.c
/dragonfly/crypto/openssl/crypto/ecdh/ech_lib.c
/dragonfly/crypto/openssl/crypto/ecdh/ech_locl.h
/dragonfly/crypto/openssl/crypto/ecdh/ech_ossl.c
/dragonfly/crypto/openssl/crypto/ecdsa/ecdsa.h
/dragonfly/crypto/openssl/crypto/ecdsa/ecs_asn1.c
/dragonfly/crypto/openssl/crypto/ecdsa/ecs_err.c
/dragonfly/crypto/openssl/crypto/ecdsa/ecs_lib.c
/dragonfly/crypto/openssl/crypto/ecdsa/ecs_locl.h
/dragonfly/crypto/openssl/crypto/ecdsa/ecs_ossl.c
/dragonfly/crypto/openssl/crypto/ecdsa/ecs_sign.c
/dragonfly/crypto/openssl/crypto/ecdsa/ecs_vrf.c
/dragonfly/crypto/openssl/crypto/engine/README
/dragonfly/crypto/openssl/crypto/engine/eng_all.c
/dragonfly/crypto/openssl/crypto/engine/eng_cnf.c
/dragonfly/crypto/openssl/crypto/engine/eng_cryptodev.c
/dragonfly/crypto/openssl/crypto/engine/eng_ctrl.c
/dragonfly/crypto/openssl/crypto/engine/eng_dyn.c
/dragonfly/crypto/openssl/crypto/engine/eng_err.c
/dragonfly/crypto/openssl/crypto/engine/eng_fat.c
/dragonfly/crypto/openssl/crypto/engine/eng_init.c
/dragonfly/crypto/openssl/crypto/engine/eng_int.h
/dragonfly/crypto/openssl/crypto/engine/eng_lib.c
/dragonfly/crypto/openssl/crypto/engine/eng_list.c
/dragonfly/crypto/openssl/crypto/engine/eng_openssl.c
/dragonfly/crypto/openssl/crypto/engine/eng_padlock.c
/dragonfly/crypto/openssl/crypto/engine/eng_pkey.c
/dragonfly/crypto/openssl/crypto/engine/eng_table.c
/dragonfly/crypto/openssl/crypto/engine/engine.h
/dragonfly/crypto/openssl/crypto/engine/tb_cipher.c
/dragonfly/crypto/openssl/crypto/engine/tb_dh.c
/dragonfly/crypto/openssl/crypto/engine/tb_digest.c
/dragonfly/crypto/openssl/crypto/engine/tb_dsa.c
/dragonfly/crypto/openssl/crypto/engine/tb_ecdh.c
/dragonfly/crypto/openssl/crypto/engine/tb_ecdsa.c
/dragonfly/crypto/openssl/crypto/engine/tb_rand.c
/dragonfly/crypto/openssl/crypto/engine/tb_rsa.c
/dragonfly/crypto/openssl/crypto/engine/tb_store.c
/dragonfly/crypto/openssl/crypto/err/err.c
/dragonfly/crypto/openssl/crypto/err/err.h
/dragonfly/crypto/openssl/crypto/err/err_all.c
/dragonfly/crypto/openssl/crypto/err/err_bio.c
/dragonfly/crypto/openssl/crypto/err/err_def.c
/dragonfly/crypto/openssl/crypto/err/err_prn.c
/dragonfly/crypto/openssl/crypto/err/err_str.c
/dragonfly/crypto/openssl/crypto/evp/bio_b64.c
/dragonfly/crypto/openssl/crypto/evp/bio_enc.c
/dragonfly/crypto/openssl/crypto/evp/bio_md.c
/dragonfly/crypto/openssl/crypto/evp/bio_ok.c
/dragonfly/crypto/openssl/crypto/evp/c_all.c
/dragonfly/crypto/openssl/crypto/evp/c_allc.c
/dragonfly/crypto/openssl/crypto/evp/c_alld.c
/dragonfly/crypto/openssl/crypto/evp/dig_eng.c
/dragonfly/crypto/openssl/crypto/evp/digest.c
/dragonfly/crypto/openssl/crypto/evp/e_aes.c
/dragonfly/crypto/openssl/crypto/evp/e_bf.c
/dragonfly/crypto/openssl/crypto/evp/e_camellia.c
/dragonfly/crypto/openssl/crypto/evp/e_cast.c
/dragonfly/crypto/openssl/crypto/evp/e_des.c
/dragonfly/crypto/openssl/crypto/evp/e_des3.c
/dragonfly/crypto/openssl/crypto/evp/e_idea.c
/dragonfly/crypto/openssl/crypto/evp/e_null.c
/dragonfly/crypto/openssl/crypto/evp/e_rc2.c
/dragonfly/crypto/openssl/crypto/evp/e_rc4.c
/dragonfly/crypto/openssl/crypto/evp/e_rc5.c
/dragonfly/crypto/openssl/crypto/evp/e_xcbc_d.c
/dragonfly/crypto/openssl/crypto/evp/enc_min.c
/dragonfly/crypto/openssl/crypto/evp/encode.c
/dragonfly/crypto/openssl/crypto/evp/evp.h
/dragonfly/crypto/openssl/crypto/evp/evp_acnf.c
/dragonfly/crypto/openssl/crypto/evp/evp_cnf.c
/dragonfly/crypto/openssl/crypto/evp/evp_enc.c
/dragonfly/crypto/openssl/crypto/evp/evp_err.c
/dragonfly/crypto/openssl/crypto/evp/evp_key.c
/dragonfly/crypto/openssl/crypto/evp/evp_lib.c
/dragonfly/crypto/openssl/crypto/evp/evp_locl.h
/dragonfly/crypto/openssl/crypto/evp/evp_pbe.c
/dragonfly/crypto/openssl/crypto/evp/evp_pkey.c
/dragonfly/crypto/openssl/crypto/evp/m_dss.c
/dragonfly/crypto/openssl/crypto/evp/m_dss1.c
/dragonfly/crypto/openssl/crypto/evp/m_ecdsa.c
/dragonfly/crypto/openssl/crypto/evp/m_md2.c
/dragonfly/crypto/openssl/crypto/evp/m_md4.c
/dragonfly/crypto/openssl/crypto/evp/m_md5.c
/dragonfly/crypto/openssl/crypto/evp/m_mdc2.c
/dragonfly/crypto/openssl/crypto/evp/m_null.c
/dragonfly/crypto/openssl/crypto/evp/m_ripemd.c
/dragonfly/crypto/openssl/crypto/evp/m_sha.c
/dragonfly/crypto/openssl/crypto/evp/m_sha1.c
/dragonfly/crypto/openssl/crypto/evp/names.c
/dragonfly/crypto/openssl/crypto/evp/openbsd_hw.c
/dragonfly/crypto/openssl/crypto/evp/p5_crpt.c
/dragonfly/crypto/openssl/crypto/evp/p5_crpt2.c
/dragonfly/crypto/openssl/crypto/evp/p_dec.c
/dragonfly/crypto/openssl/crypto/evp/p_enc.c
/dragonfly/crypto/openssl/crypto/evp/p_lib.c
/dragonfly/crypto/openssl/crypto/evp/p_open.c
/dragonfly/crypto/openssl/crypto/evp/p_seal.c
/dragonfly/crypto/openssl/crypto/evp/p_sign.c
/dragonfly/crypto/openssl/crypto/evp/p_verify.c
/dragonfly/crypto/openssl/crypto/ex_data.c
/dragonfly/crypto/openssl/crypto/fips_err.c
/dragonfly/crypto/openssl/crypto/fips_err.h
/dragonfly/crypto/openssl/crypto/hmac/hmac.c
/dragonfly/crypto/openssl/crypto/hmac/hmac.h
/dragonfly/crypto/openssl/crypto/idea/i_cbc.c
/dragonfly/crypto/openssl/crypto/idea/i_cfb64.c
/dragonfly/crypto/openssl/crypto/idea/i_ecb.c
/dragonfly/crypto/openssl/crypto/idea/i_ofb64.c
/dragonfly/crypto/openssl/crypto/idea/i_skey.c
/dragonfly/crypto/openssl/crypto/idea/idea.h
/dragonfly/crypto/openssl/crypto/idea/idea_lcl.h
/dragonfly/crypto/openssl/crypto/idea/version
/dragonfly/crypto/openssl/crypto/krb5/krb5_asn.c
/dragonfly/crypto/openssl/crypto/krb5/krb5_asn.h
/dragonfly/crypto/openssl/crypto/lhash/lh_stats.c
/dragonfly/crypto/openssl/crypto/lhash/lhash.c
/dragonfly/crypto/openssl/crypto/lhash/lhash.h
/dragonfly/crypto/openssl/crypto/md2/md2.h
/dragonfly/crypto/openssl/crypto/md2/md2_dgst.c
/dragonfly/crypto/openssl/crypto/md2/md2_one.c
/dragonfly/crypto/openssl/crypto/md32_common.h
/dragonfly/crypto/openssl/crypto/md4/md4.h
/dragonfly/crypto/openssl/crypto/md4/md4_dgst.c
/dragonfly/crypto/openssl/crypto/md4/md4_locl.h
/dragonfly/crypto/openssl/crypto/md4/md4_one.c
/dragonfly/crypto/openssl/crypto/md5/md5.h
/dragonfly/crypto/openssl/crypto/md5/md5_dgst.c
/dragonfly/crypto/openssl/crypto/md5/md5_locl.h
/dragonfly/crypto/openssl/crypto/md5/md5_one.c
/dragonfly/crypto/openssl/crypto/mdc2/mdc2.h
/dragonfly/crypto/openssl/crypto/mdc2/mdc2_one.c
/dragonfly/crypto/openssl/crypto/mdc2/mdc2dgst.c
/dragonfly/crypto/openssl/crypto/mem.c
/dragonfly/crypto/openssl/crypto/mem_clr.c
/dragonfly/crypto/openssl/crypto/mem_dbg.c
/dragonfly/crypto/openssl/crypto/o_dir.c
/dragonfly/crypto/openssl/crypto/o_dir.h
/dragonfly/crypto/openssl/crypto/o_init.c
/dragonfly/crypto/openssl/crypto/o_time.c
/dragonfly/crypto/openssl/crypto/o_time.h
/dragonfly/crypto/openssl/crypto/objects/o_names.c
/dragonfly/crypto/openssl/crypto/objects/obj_dat.c
/dragonfly/crypto/openssl/crypto/objects/obj_dat.h
/dragonfly/crypto/openssl/crypto/objects/obj_err.c
/dragonfly/crypto/openssl/crypto/objects/obj_lib.c
/dragonfly/crypto/openssl/crypto/objects/obj_mac.h
/dragonfly/crypto/openssl/crypto/objects/objects.README
/dragonfly/crypto/openssl/crypto/objects/objects.h
/dragonfly/crypto/openssl/crypto/ocsp/ocsp.h
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_asn.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_cl.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_err.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_ext.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_ht.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_lib.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_prn.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_srv.c
/dragonfly/crypto/openssl/crypto/ocsp/ocsp_vfy.c
/dragonfly/crypto/openssl/crypto/opensslv.h
/dragonfly/crypto/openssl/crypto/ossl_typ.h
/dragonfly/crypto/openssl/crypto/pem/message
/dragonfly/crypto/openssl/crypto/pem/pem.h
/dragonfly/crypto/openssl/crypto/pem/pem2.h
/dragonfly/crypto/openssl/crypto/pem/pem_all.c
/dragonfly/crypto/openssl/crypto/pem/pem_err.c
/dragonfly/crypto/openssl/crypto/pem/pem_info.c
/dragonfly/crypto/openssl/crypto/pem/pem_lib.c
/dragonfly/crypto/openssl/crypto/pem/pem_oth.c
/dragonfly/crypto/openssl/crypto/pem/pem_pk8.c
/dragonfly/crypto/openssl/crypto/pem/pem_pkey.c
/dragonfly/crypto/openssl/crypto/pem/pem_seal.c
/dragonfly/crypto/openssl/crypto/pem/pem_sign.c
/dragonfly/crypto/openssl/crypto/pem/pem_x509.c
/dragonfly/crypto/openssl/crypto/pem/pem_xaux.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_add.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_asn.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_attr.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_crpt.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_crt.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_decr.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_init.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_key.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_kiss.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_mutl.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_npas.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_p8d.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_p8e.c
/dragonfly/crypto/openssl/crypto/pkcs12/p12_utl.c
/dragonfly/crypto/openssl/crypto/pkcs12/pk12err.c
/dragonfly/crypto/openssl/crypto/pkcs12/pkcs12.h
/dragonfly/crypto/openssl/crypto/pkcs7/doc
/dragonfly/crypto/openssl/crypto/pkcs7/example.c
/dragonfly/crypto/openssl/crypto/pkcs7/pk7_asn1.c
/dragonfly/crypto/openssl/crypto/pkcs7/pk7_attr.c
/dragonfly/crypto/openssl/crypto/pkcs7/pk7_dgst.c
/dragonfly/crypto/openssl/crypto/pkcs7/pk7_doit.c
/dragonfly/crypto/openssl/crypto/pkcs7/pk7_lib.c
/dragonfly/crypto/openssl/crypto/pkcs7/pk7_mime.c
/dragonfly/crypto/openssl/crypto/pkcs7/pk7_smime.c
/dragonfly/crypto/openssl/crypto/pkcs7/pkcs7.h
/dragonfly/crypto/openssl/crypto/pkcs7/pkcs7err.c
/dragonfly/crypto/openssl/crypto/pqueue/pq_compat.h
/dragonfly/crypto/openssl/crypto/pqueue/pq_test.c
/dragonfly/crypto/openssl/crypto/pqueue/pqueue.c
/dragonfly/crypto/openssl/crypto/pqueue/pqueue.h
/dragonfly/crypto/openssl/crypto/rand/md_rand.c
/dragonfly/crypto/openssl/crypto/rand/rand.h
/dragonfly/crypto/openssl/crypto/rand/rand_egd.c
/dragonfly/crypto/openssl/crypto/rand/rand_eng.c
/dragonfly/crypto/openssl/crypto/rand/rand_err.c
/dragonfly/crypto/openssl/crypto/rand/rand_lcl.h
/dragonfly/crypto/openssl/crypto/rand/rand_lib.c
/dragonfly/crypto/openssl/crypto/rand/rand_nw.c
/dragonfly/crypto/openssl/crypto/rand/rand_unix.c
/dragonfly/crypto/openssl/crypto/rand/randfile.c
/dragonfly/crypto/openssl/crypto/rc2/rc2.h
/dragonfly/crypto/openssl/crypto/rc2/rc2_cbc.c
/dragonfly/crypto/openssl/crypto/rc2/rc2_ecb.c
/dragonfly/crypto/openssl/crypto/rc2/rc2_locl.h
/dragonfly/crypto/openssl/crypto/rc2/rc2_skey.c
/dragonfly/crypto/openssl/crypto/rc2/rc2cfb64.c
/dragonfly/crypto/openssl/crypto/rc2/rc2ofb64.c
/dragonfly/crypto/openssl/crypto/rc2/version
/dragonfly/crypto/openssl/crypto/rc4/rc4.h
/dragonfly/crypto/openssl/crypto/rc4/rc4_enc.c
/dragonfly/crypto/openssl/crypto/rc4/rc4_fblk.c
/dragonfly/crypto/openssl/crypto/rc4/rc4_locl.h
/dragonfly/crypto/openssl/crypto/rc4/rc4_skey.c
/dragonfly/crypto/openssl/crypto/rc5/rc5.h
/dragonfly/crypto/openssl/crypto/rc5/rc5_ecb.c
/dragonfly/crypto/openssl/crypto/rc5/rc5_enc.c
/dragonfly/crypto/openssl/crypto/rc5/rc5_locl.h
/dragonfly/crypto/openssl/crypto/rc5/rc5_skey.c
/dragonfly/crypto/openssl/crypto/rc5/rc5cfb64.c
/dragonfly/crypto/openssl/crypto/rc5/rc5ofb64.c
/dragonfly/crypto/openssl/crypto/ripemd/README
/dragonfly/crypto/openssl/crypto/ripemd/ripemd.h
/dragonfly/crypto/openssl/crypto/ripemd/rmd_dgst.c
/dragonfly/crypto/openssl/crypto/ripemd/rmd_locl.h
/dragonfly/crypto/openssl/crypto/ripemd/rmd_one.c
/dragonfly/crypto/openssl/crypto/ripemd/rmdconst.h
/dragonfly/crypto/openssl/crypto/rsa/rsa.h
/dragonfly/crypto/openssl/crypto/rsa/rsa_asn1.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_chk.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_depr.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_eay.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_eng.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_err.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_gen.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_lib.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_none.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_null.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_oaep.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_pk1.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_pss.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_saos.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_sign.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_ssl.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_x931.c
/dragonfly/crypto/openssl/crypto/rsa/rsa_x931g.c
/dragonfly/crypto/openssl/crypto/sha/sha.h
/dragonfly/crypto/openssl/crypto/sha/sha1_one.c
/dragonfly/crypto/openssl/crypto/sha/sha1dgst.c
/dragonfly/crypto/openssl/crypto/sha/sha256.c
/dragonfly/crypto/openssl/crypto/sha/sha512.c
/dragonfly/crypto/openssl/crypto/sha/sha_dgst.c
/dragonfly/crypto/openssl/crypto/sha/sha_locl.h
/dragonfly/crypto/openssl/crypto/sha/sha_one.c
/dragonfly/crypto/openssl/crypto/stack/safestack.h
/dragonfly/crypto/openssl/crypto/stack/stack.c
/dragonfly/crypto/openssl/crypto/stack/stack.h
/dragonfly/crypto/openssl/crypto/store/README
/dragonfly/crypto/openssl/crypto/store/store.h
/dragonfly/crypto/openssl/crypto/store/str_err.c
/dragonfly/crypto/openssl/crypto/store/str_lib.c
/dragonfly/crypto/openssl/crypto/store/str_locl.h
/dragonfly/crypto/openssl/crypto/store/str_mem.c
/dragonfly/crypto/openssl/crypto/store/str_meth.c
/dragonfly/crypto/openssl/crypto/symhacks.h
/dragonfly/crypto/openssl/crypto/threads/README
/dragonfly/crypto/openssl/crypto/threads/th-lock.c
/dragonfly/crypto/openssl/crypto/tmdiff.c
/dragonfly/crypto/openssl/crypto/tmdiff.h
/dragonfly/crypto/openssl/crypto/txt_db/txt_db.c
/dragonfly/crypto/openssl/crypto/txt_db/txt_db.h
/dragonfly/crypto/openssl/crypto/ui/ui.h
/dragonfly/crypto/openssl/crypto/ui/ui_compat.c
/dragonfly/crypto/openssl/crypto/ui/ui_compat.h
/dragonfly/crypto/openssl/crypto/ui/ui_err.c
/dragonfly/crypto/openssl/crypto/ui/ui_lib.c
/dragonfly/crypto/openssl/crypto/ui/ui_locl.h
/dragonfly/crypto/openssl/crypto/ui/ui_openssl.c
/dragonfly/crypto/openssl/crypto/ui/ui_util.c
/dragonfly/crypto/openssl/crypto/uid.c
/dragonfly/crypto/openssl/crypto/x509/by_dir.c
/dragonfly/crypto/openssl/crypto/x509/by_file.c
/dragonfly/crypto/openssl/crypto/x509/x509.h
/dragonfly/crypto/openssl/crypto/x509/x509_att.c
/dragonfly/crypto/openssl/crypto/x509/x509_cmp.c
/dragonfly/crypto/openssl/crypto/x509/x509_d2.c
/dragonfly/crypto/openssl/crypto/x509/x509_def.c
/dragonfly/crypto/openssl/crypto/x509/x509_err.c
/dragonfly/crypto/openssl/crypto/x509/x509_ext.c
/dragonfly/crypto/openssl/crypto/x509/x509_lu.c
/dragonfly/crypto/openssl/crypto/x509/x509_obj.c
/dragonfly/crypto/openssl/crypto/x509/x509_r2x.c
/dragonfly/crypto/openssl/crypto/x509/x509_req.c
/dragonfly/crypto/openssl/crypto/x509/x509_set.c
/dragonfly/crypto/openssl/crypto/x509/x509_trs.c
/dragonfly/crypto/openssl/crypto/x509/x509_txt.c
/dragonfly/crypto/openssl/crypto/x509/x509_v3.c
/dragonfly/crypto/openssl/crypto/x509/x509_vfy.c
/dragonfly/crypto/openssl/crypto/x509/x509_vfy.h
/dragonfly/crypto/openssl/crypto/x509/x509_vpm.c
/dragonfly/crypto/openssl/crypto/x509/x509cset.c
/dragonfly/crypto/openssl/crypto/x509/x509name.c
/dragonfly/crypto/openssl/crypto/x509/x509rset.c
/dragonfly/crypto/openssl/crypto/x509/x509spki.c
/dragonfly/crypto/openssl/crypto/x509/x509type.c
/dragonfly/crypto/openssl/crypto/x509/x_all.c
/dragonfly/crypto/openssl/crypto/x509v3/ext_dat.h
/dragonfly/crypto/openssl/crypto/x509v3/pcy_cache.c
/dragonfly/crypto/openssl/crypto/x509v3/pcy_data.c
/dragonfly/crypto/openssl/crypto/x509v3/pcy_int.h
/dragonfly/crypto/openssl/crypto/x509v3/pcy_lib.c
/dragonfly/crypto/openssl/crypto/x509v3/pcy_map.c
/dragonfly/crypto/openssl/crypto/x509v3/pcy_node.c
/dragonfly/crypto/openssl/crypto/x509v3/pcy_tree.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_addr.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_akey.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_akeya.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_alt.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_asid.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_bcons.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_bitst.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_conf.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_cpols.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_crld.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_enum.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_extku.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_genn.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_ia5.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_info.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_int.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_lib.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_ncons.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_ocsp.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_pci.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_pcia.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_pcons.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_pku.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_pmaps.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_prn.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_purp.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_skey.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_sxnet.c
/dragonfly/crypto/openssl/crypto/x509v3/v3_utl.c
/dragonfly/crypto/openssl/crypto/x509v3/v3err.c
/dragonfly/crypto/openssl/crypto/x509v3/x509v3.h
/dragonfly/crypto/openssl/doc/apps/CA.pl.pod
/dragonfly/crypto/openssl/doc/apps/asn1parse.pod
/dragonfly/crypto/openssl/doc/apps/ca.pod
/dragonfly/crypto/openssl/doc/apps/ciphers.pod
/dragonfly/crypto/openssl/doc/apps/config.pod
/dragonfly/crypto/openssl/doc/apps/crl.pod
/dragonfly/crypto/openssl/doc/apps/crl2pkcs7.pod
/dragonfly/crypto/openssl/doc/apps/dgst.pod
/dragonfly/crypto/openssl/doc/apps/dhparam.pod
/dragonfly/crypto/openssl/doc/apps/dsa.pod
/dragonfly/crypto/openssl/doc/apps/dsaparam.pod
/dragonfly/crypto/openssl/doc/apps/ec.pod
/dragonfly/crypto/openssl/doc/apps/ecparam.pod
/dragonfly/crypto/openssl/doc/apps/enc.pod
/dragonfly/crypto/openssl/doc/apps/errstr.pod
/dragonfly/crypto/openssl/doc/apps/gendsa.pod
/dragonfly/crypto/openssl/doc/apps/genrsa.pod
/dragonfly/crypto/openssl/doc/apps/nseq.pod
/dragonfly/crypto/openssl/doc/apps/ocsp.pod
/dragonfly/crypto/openssl/doc/apps/openssl.pod
/dragonfly/crypto/openssl/doc/apps/passwd.pod
/dragonfly/crypto/openssl/doc/apps/pkcs12.pod
/dragonfly/crypto/openssl/doc/apps/pkcs7.pod
/dragonfly/crypto/openssl/doc/apps/pkcs8.pod
/dragonfly/crypto/openssl/doc/apps/rand.pod
/dragonfly/crypto/openssl/doc/apps/req.pod
/dragonfly/crypto/openssl/doc/apps/rsa.pod
/dragonfly/crypto/openssl/doc/apps/rsautl.pod
/dragonfly/crypto/openssl/doc/apps/s_client.pod
/dragonfly/crypto/openssl/doc/apps/s_server.pod
/dragonfly/crypto/openssl/doc/apps/s_time.pod
/dragonfly/crypto/openssl/doc/apps/sess_id.pod
/dragonfly/crypto/openssl/doc/apps/smime.pod
/dragonfly/crypto/openssl/doc/apps/speed.pod
/dragonfly/crypto/openssl/doc/apps/spkac.pod
/dragonfly/crypto/openssl/doc/apps/verify.pod
/dragonfly/crypto/openssl/doc/apps/version.pod
/dragonfly/crypto/openssl/doc/apps/x509.pod
/dragonfly/crypto/openssl/doc/apps/x509v3_config.pod
/dragonfly/crypto/openssl/doc/crypto/ASN1_OBJECT_new.pod
/dragonfly/crypto/openssl/doc/crypto/ASN1_STRING_length.pod
/dragonfly/crypto/openssl/doc/crypto/ASN1_STRING_new.pod
/dragonfly/crypto/openssl/doc/crypto/ASN1_STRING_print_ex.pod
/dragonfly/crypto/openssl/doc/crypto/ASN1_generate_nconf.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_ctrl.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_f_base64.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_f_buffer.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_f_cipher.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_f_md.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_f_null.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_f_ssl.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_find_type.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_new.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_push.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_read.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_accept.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_bio.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_connect.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_fd.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_file.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_mem.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_null.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_s_socket.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_set_callback.pod
/dragonfly/crypto/openssl/doc/crypto/BIO_should_retry.pod
/dragonfly/crypto/openssl/doc/crypto/BN_BLINDING_new.pod
/dragonfly/crypto/openssl/doc/crypto/BN_CTX_new.pod
/dragonfly/crypto/openssl/doc/crypto/BN_CTX_start.pod
/dragonfly/crypto/openssl/doc/crypto/BN_add.pod
/dragonfly/crypto/openssl/doc/crypto/BN_add_word.pod
/dragonfly/crypto/openssl/doc/crypto/BN_bn2bin.pod
/dragonfly/crypto/openssl/doc/crypto/BN_cmp.pod
/dragonfly/crypto/openssl/doc/crypto/BN_copy.pod
/dragonfly/crypto/openssl/doc/crypto/BN_generate_prime.pod
/dragonfly/crypto/openssl/doc/crypto/BN_mod_inverse.pod
/dragonfly/crypto/openssl/doc/crypto/BN_mod_mul_montgomery.pod
/dragonfly/crypto/openssl/doc/crypto/BN_mod_mul_reciprocal.pod
/dragonfly/crypto/openssl/doc/crypto/BN_new.pod
/dragonfly/crypto/openssl/doc/crypto/BN_num_bytes.pod
/dragonfly/crypto/openssl/doc/crypto/BN_rand.pod
/dragonfly/crypto/openssl/doc/crypto/BN_set_bit.pod
/dragonfly/crypto/openssl/doc/crypto/BN_swap.pod
/dragonfly/crypto/openssl/doc/crypto/BN_zero.pod
/dragonfly/crypto/openssl/doc/crypto/CONF_modules_free.pod
/dragonfly/crypto/openssl/doc/crypto/CONF_modules_load_file.pod
/dragonfly/crypto/openssl/doc/crypto/CRYPTO_set_ex_data.pod
/dragonfly/crypto/openssl/doc/crypto/DH_generate_key.pod
/dragonfly/crypto/openssl/doc/crypto/DH_generate_parameters.pod
/dragonfly/crypto/openssl/doc/crypto/DH_get_ex_new_index.pod
/dragonfly/crypto/openssl/doc/crypto/DH_new.pod
/dragonfly/crypto/openssl/doc/crypto/DH_set_method.pod
/dragonfly/crypto/openssl/doc/crypto/DH_size.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_SIG_new.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_do_sign.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_dup_DH.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_generate_key.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_generate_parameters.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_get_ex_new_index.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_new.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_set_method.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_sign.pod
/dragonfly/crypto/openssl/doc/crypto/DSA_size.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_GET_LIB.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_clear_error.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_error_string.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_get_error.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_load_crypto_strings.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_load_strings.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_print_errors.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_put_error.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_remove_state.pod
/dragonfly/crypto/openssl/doc/crypto/ERR_set_mark.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_BytesToKey.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_DigestInit.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_EncryptInit.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_OpenInit.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_PKEY_new.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_PKEY_set1_RSA.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_SealInit.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_SignInit.pod
/dragonfly/crypto/openssl/doc/crypto/EVP_VerifyInit.pod
/dragonfly/crypto/openssl/doc/crypto/OBJ_nid2obj.pod
/dragonfly/crypto/openssl/doc/crypto/OPENSSL_Applink.pod
/dragonfly/crypto/openssl/doc/crypto/OPENSSL_VERSION_NUMBER.pod
/dragonfly/crypto/openssl/doc/crypto/OPENSSL_config.pod
/dragonfly/crypto/openssl/doc/crypto/OPENSSL_ia32cap.pod
/dragonfly/crypto/openssl/doc/crypto/OPENSSL_load_builtin_modules.pod
/dragonfly/crypto/openssl/doc/crypto/OpenSSL_add_all_algorithms.pod
/dragonfly/crypto/openssl/doc/crypto/PKCS12_create.pod
/dragonfly/crypto/openssl/doc/crypto/PKCS12_parse.pod
/dragonfly/crypto/openssl/doc/crypto/PKCS7_decrypt.pod
/dragonfly/crypto/openssl/doc/crypto/PKCS7_encrypt.pod
/dragonfly/crypto/openssl/doc/crypto/PKCS7_sign.pod
/dragonfly/crypto/openssl/doc/crypto/PKCS7_verify.pod
/dragonfly/crypto/openssl/doc/crypto/RAND_add.pod
/dragonfly/crypto/openssl/doc/crypto/RAND_bytes.pod
/dragonfly/crypto/openssl/doc/crypto/RAND_cleanup.pod
/dragonfly/crypto/openssl/doc/crypto/RAND_egd.pod
/dragonfly/crypto/openssl/doc/crypto/RAND_load_file.pod
/dragonfly/crypto/openssl/doc/crypto/RAND_set_rand_method.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_blinding_on.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_check_key.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_generate_key.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_get_ex_new_index.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_new.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_padding_add_PKCS1_type_1.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_print.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_private_encrypt.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_public_encrypt.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_set_method.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_sign.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_sign_ASN1_OCTET_STRING.pod
/dragonfly/crypto/openssl/doc/crypto/RSA_size.pod
/dragonfly/crypto/openssl/doc/crypto/SMIME_read_PKCS7.pod
/dragonfly/crypto/openssl/doc/crypto/SMIME_write_PKCS7.pod
/dragonfly/crypto/openssl/doc/crypto/X509_NAME_ENTRY_get_object.pod
/dragonfly/crypto/openssl/doc/crypto/X509_NAME_add_entry_by_txt.pod
/dragonfly/crypto/openssl/doc/crypto/X509_NAME_get_index_by_NID.pod
/dragonfly/crypto/openssl/doc/crypto/X509_NAME_print_ex.pod
/dragonfly/crypto/openssl/doc/crypto/X509_new.pod
/dragonfly/crypto/openssl/doc/crypto/bio.pod
/dragonfly/crypto/openssl/doc/crypto/blowfish.pod
/dragonfly/crypto/openssl/doc/crypto/bn.pod
/dragonfly/crypto/openssl/doc/crypto/bn_internal.pod
/dragonfly/crypto/openssl/doc/crypto/buffer.pod
/dragonfly/crypto/openssl/doc/crypto/crypto.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_ASN1_OBJECT.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_DHparams.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_DSAPublicKey.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_PKCS8PrivateKey.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_RSAPublicKey.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_X509.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_X509_ALGOR.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_X509_CRL.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_X509_NAME.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_X509_REQ.pod
/dragonfly/crypto/openssl/doc/crypto/d2i_X509_SIG.pod
/dragonfly/crypto/openssl/doc/crypto/des.pod
/dragonfly/crypto/openssl/doc/crypto/des_modes.pod
/dragonfly/crypto/openssl/doc/crypto/dh.pod
/dragonfly/crypto/openssl/doc/crypto/dsa.pod
/dragonfly/crypto/openssl/doc/crypto/ecdsa.pod
/dragonfly/crypto/openssl/doc/crypto/engine.pod
/dragonfly/crypto/openssl/doc/crypto/err.pod
/dragonfly/crypto/openssl/doc/crypto/evp.pod
/dragonfly/crypto/openssl/doc/crypto/hmac.pod
/dragonfly/crypto/openssl/doc/crypto/lh_stats.pod
/dragonfly/crypto/openssl/doc/crypto/lhash.pod
/dragonfly/crypto/openssl/doc/crypto/md5.pod
/dragonfly/crypto/openssl/doc/crypto/mdc2.pod
/dragonfly/crypto/openssl/doc/crypto/pem.pod
/dragonfly/crypto/openssl/doc/crypto/rand.pod
/dragonfly/crypto/openssl/doc/crypto/rc4.pod
/dragonfly/crypto/openssl/doc/crypto/ripemd.pod
/dragonfly/crypto/openssl/doc/crypto/rsa.pod
/dragonfly/crypto/openssl/doc/crypto/sha.pod
/dragonfly/crypto/openssl/doc/crypto/threads.pod
/dragonfly/crypto/openssl/doc/crypto/ui.pod
/dragonfly/crypto/openssl/doc/crypto/ui_compat.pod
/dragonfly/crypto/openssl/doc/crypto/x509.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CIPHER_get_name.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_COMP_add_compression_method.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_add_extra_chain_cert.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_add_session.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_ctrl.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_flush_sessions.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_free.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_get_ex_new_index.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_get_verify_mode.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_load_verify_locations.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_new.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_sess_number.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_sess_set_cache_size.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_sess_set_get_cb.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_sessions.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_cert_store.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_cert_verify_callback.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_cipher_list.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_client_cert_cb.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_default_passwd_cb.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_generate_session_id.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_info_callback.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_max_cert_list.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_mode.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_msg_callback.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_quiet_shutdown.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_session_cache_mode.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_session_id_context.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_ssl_version.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_timeout.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_dh_callback.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_tmp_rsa_callback.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_set_verify.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_CTX_use_certificate.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_SESSION_free.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_SESSION_get_ex_new_index.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_SESSION_get_time.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_accept.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_alert_type_string.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_clear.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_connect.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_do_handshake.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_free.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_SSL_CTX.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_ciphers.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_client_CA_list.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_current_cipher.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_default_timeout.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_error.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_ex_data_X509_STORE_CTX_idx.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_ex_new_index.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_fd.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_peer_cert_chain.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_peer_certificate.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_rbio.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_session.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_verify_result.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_get_version.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_library_init.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_load_client_CA_file.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_new.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_pending.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_read.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_rstate_string.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_session_reused.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_set_bio.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_set_connect_state.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_set_fd.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_set_session.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_set_shutdown.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_set_verify_result.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_shutdown.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_state_string.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_want.pod
/dragonfly/crypto/openssl/doc/ssl/SSL_write.pod
/dragonfly/crypto/openssl/doc/ssl/d2i_SSL_SESSION.pod
/dragonfly/crypto/openssl/doc/ssl/ssl.pod
/dragonfly/crypto/openssl/e_os.h
/dragonfly/crypto/openssl/e_os2.h
/dragonfly/crypto/openssl/engines/e_4758cca.c
/dragonfly/crypto/openssl/engines/e_4758cca_err.c
/dragonfly/crypto/openssl/engines/e_4758cca_err.h
/dragonfly/crypto/openssl/engines/e_aep.c
/dragonfly/crypto/openssl/engines/e_aep_err.c
/dragonfly/crypto/openssl/engines/e_aep_err.h
/dragonfly/crypto/openssl/engines/e_atalla.c
/dragonfly/crypto/openssl/engines/e_atalla_err.c
/dragonfly/crypto/openssl/engines/e_atalla_err.h
/dragonfly/crypto/openssl/engines/e_chil.c
/dragonfly/crypto/openssl/engines/e_chil_err.c
/dragonfly/crypto/openssl/engines/e_chil_err.h
/dragonfly/crypto/openssl/engines/e_cswift.c
/dragonfly/crypto/openssl/engines/e_cswift_err.c
/dragonfly/crypto/openssl/engines/e_cswift_err.h
/dragonfly/crypto/openssl/engines/e_gmp.c
/dragonfly/crypto/openssl/engines/e_gmp_err.c
/dragonfly/crypto/openssl/engines/e_gmp_err.h
/dragonfly/crypto/openssl/engines/e_nuron.c
/dragonfly/crypto/openssl/engines/e_nuron_err.c
/dragonfly/crypto/openssl/engines/e_nuron_err.h
/dragonfly/crypto/openssl/engines/e_sureware.c
/dragonfly/crypto/openssl/engines/e_sureware_err.c
/dragonfly/crypto/openssl/engines/e_sureware_err.h
/dragonfly/crypto/openssl/engines/e_ubsec.c
/dragonfly/crypto/openssl/engines/e_ubsec_err.c
/dragonfly/crypto/openssl/engines/e_ubsec_err.h
/dragonfly/crypto/openssl/engines/vendor_defns/aep.h
/dragonfly/crypto/openssl/engines/vendor_defns/atalla.h
/dragonfly/crypto/openssl/engines/vendor_defns/cswift.h
/dragonfly/crypto/openssl/engines/vendor_defns/hw_4758_cca.h
/dragonfly/crypto/openssl/engines/vendor_defns/hw_ubsec.h
/dragonfly/crypto/openssl/engines/vendor_defns/hwcryptohook.h
/dragonfly/crypto/openssl/engines/vendor_defns/sureware.h
/dragonfly/crypto/openssl/ssl/bio_ssl.c
/dragonfly/crypto/openssl/ssl/d1_both.c
/dragonfly/crypto/openssl/ssl/d1_clnt.c
/dragonfly/crypto/openssl/ssl/d1_enc.c
/dragonfly/crypto/openssl/ssl/d1_lib.c
/dragonfly/crypto/openssl/ssl/d1_meth.c
/dragonfly/crypto/openssl/ssl/d1_pkt.c
/dragonfly/crypto/openssl/ssl/d1_srvr.c
/dragonfly/crypto/openssl/ssl/dtls1.h
/dragonfly/crypto/openssl/ssl/kssl.c
/dragonfly/crypto/openssl/ssl/kssl.h
/dragonfly/crypto/openssl/ssl/kssl_lcl.h
/dragonfly/crypto/openssl/ssl/s23_clnt.c
/dragonfly/crypto/openssl/ssl/s23_lib.c
/dragonfly/crypto/openssl/ssl/s23_meth.c
/dragonfly/crypto/openssl/ssl/s23_pkt.c
/dragonfly/crypto/openssl/ssl/s23_srvr.c
/dragonfly/crypto/openssl/ssl/s2_clnt.c
/dragonfly/crypto/openssl/ssl/s2_enc.c
/dragonfly/crypto/openssl/ssl/s2_lib.c
/dragonfly/crypto/openssl/ssl/s2_meth.c
/dragonfly/crypto/openssl/ssl/s2_pkt.c
/dragonfly/crypto/openssl/ssl/s2_srvr.c
/dragonfly/crypto/openssl/ssl/s3_both.c
/dragonfly/crypto/openssl/ssl/s3_clnt.c
/dragonfly/crypto/openssl/ssl/s3_enc.c
/dragonfly/crypto/openssl/ssl/s3_lib.c
/dragonfly/crypto/openssl/ssl/s3_meth.c
/dragonfly/crypto/openssl/ssl/s3_pkt.c
/dragonfly/crypto/openssl/ssl/s3_srvr.c
/dragonfly/crypto/openssl/ssl/ssl.h
/dragonfly/crypto/openssl/ssl/ssl2.h
/dragonfly/crypto/openssl/ssl/ssl23.h
/dragonfly/crypto/openssl/ssl/ssl3.h
/dragonfly/crypto/openssl/ssl/ssl_algs.c
/dragonfly/crypto/openssl/ssl/ssl_asn1.c
/dragonfly/crypto/openssl/ssl/ssl_cert.c
/dragonfly/crypto/openssl/ssl/ssl_ciph.c
/dragonfly/crypto/openssl/ssl/ssl_err.c
/dragonfly/crypto/openssl/ssl/ssl_err2.c
/dragonfly/crypto/openssl/ssl/ssl_lib.c
/dragonfly/crypto/openssl/ssl/ssl_locl.h
/dragonfly/crypto/openssl/ssl/ssl_rsa.c
/dragonfly/crypto/openssl/ssl/ssl_sess.c
/dragonfly/crypto/openssl/ssl/ssl_stat.c
/dragonfly/crypto/openssl/ssl/ssl_txt.c
/dragonfly/crypto/openssl/ssl/t1_clnt.c
/dragonfly/crypto/openssl/ssl/t1_enc.c
/dragonfly/crypto/openssl/ssl/t1_lib.c
/dragonfly/crypto/openssl/ssl/t1_meth.c
/dragonfly/crypto/openssl/ssl/t1_srvr.c
/dragonfly/crypto/openssl/ssl/tls1.h
/dragonfly/crypto/openssl/util/extract-names.pl
/dragonfly/crypto/openssl/util/extract-section.pl
/dragonfly/etc/Makefile
/dragonfly/etc/Makefile.usr
/dragonfly/etc/mtree/BSD.include.dist
/dragonfly/etc/pam.d/Makefile
/dragonfly/etc/pam.d/atrun
/dragonfly/etc/pam.d/cron
/dragonfly/etc/pam.d/gdm
/dragonfly/etc/pam.d/imap
/dragonfly/etc/pam.d/kde
/dragonfly/etc/pam.d/login
/dragonfly/etc/pam.d/other
/dragonfly/etc/pam.d/pop3
/dragonfly/etc/pam.d/rsh
/dragonfly/etc/pam.d/sshd
/dragonfly/etc/pam.d/telnetd
/dragonfly/etc/pam.d/xdm
/dragonfly/gnu/usr.bin/binutils217/as/amd64-dragonfly/targ-env.h
/dragonfly/gnu/usr.bin/binutils217/as/i386-dragonfly/targ-env.h
/dragonfly/gnu/usr.bin/binutils217/ld/Makefile
/dragonfly/gnu/usr.bin/binutils217/ld/Makefile.amd64
/dragonfly/gnu/usr.bin/binutils217/ld/Makefile.i386
/dragonfly/gnu/usr.bin/cc41/Makefile.tgt
/dragonfly/gnu/usr.bin/cc41/cc_prep/Makefile
Makefile
/dragonfly/lib/libc/gen/ftw.3
/dragonfly/lib/libc/net/nsdispatch.3
/dragonfly/lib/libc/rpc/getnetconfig.3
/dragonfly/lib/libc/rpc/rpcbind.3
/dragonfly/lib/libstand/Makefile
/dragonfly/lib/libutil/flopen.3
/dragonfly/lib/pam_module/Makefile
/dragonfly/lib/pam_module/pam_passwdqc/Makefile
/dragonfly/libexec/atrun/Makefile
/dragonfly/libexec/atrun/atrun.8
/dragonfly/libexec/atrun/atrun.c
/dragonfly/libexec/atrun/gloadavg.c
/dragonfly/nrelease/Makefile
/dragonfly/secure/lib/libcrypto/Makefile
/dragonfly/secure/lib/libcrypto/Makefile.inc
/dragonfly/secure/lib/libcrypto/Makefile.man
/dragonfly/secure/lib/libcrypto/man/ASN1_OBJECT_new.3
/dragonfly/secure/lib/libcrypto/man/ASN1_STRING_length.3
/dragonfly/secure/lib/libcrypto/man/ASN1_STRING_new.3
/dragonfly/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3
/dragonfly/secure/lib/libcrypto/man/ASN1_generate_nconf.3
/dragonfly/secure/lib/libcrypto/man/BIO_ctrl.3
/dragonfly/secure/lib/libcrypto/man/BIO_f_base64.3
/dragonfly/secure/lib/libcrypto/man/BIO_f_buffer.3
/dragonfly/secure/lib/libcrypto/man/BIO_f_cipher.3
/dragonfly/secure/lib/libcrypto/man/BIO_f_md.3
/dragonfly/secure/lib/libcrypto/man/BIO_f_null.3
/dragonfly/secure/lib/libcrypto/man/BIO_f_ssl.3
/dragonfly/secure/lib/libcrypto/man/BIO_find_type.3
/dragonfly/secure/lib/libcrypto/man/BIO_new.3
/dragonfly/secure/lib/libcrypto/man/BIO_push.3
/dragonfly/secure/lib/libcrypto/man/BIO_read.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_accept.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_bio.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_connect.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_fd.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_file.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_mem.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_null.3
/dragonfly/secure/lib/libcrypto/man/BIO_s_socket.3
/dragonfly/secure/lib/libcrypto/man/BIO_set_callback.3
/dragonfly/secure/lib/libcrypto/man/BIO_should_retry.3
/dragonfly/secure/lib/libcrypto/man/BN_BLINDING_new.3
/dragonfly/secure/lib/libcrypto/man/BN_CTX_new.3
/dragonfly/secure/lib/libcrypto/man/BN_CTX_start.3
/dragonfly/secure/lib/libcrypto/man/BN_add.3
/dragonfly/secure/lib/libcrypto/man/BN_add_word.3
/dragonfly/secure/lib/libcrypto/man/BN_bn2bin.3
/dragonfly/secure/lib/libcrypto/man/BN_cmp.3
/dragonfly/secure/lib/libcrypto/man/BN_copy.3
/dragonfly/secure/lib/libcrypto/man/BN_generate_prime.3
/dragonfly/secure/lib/libcrypto/man/BN_mod_inverse.3
/dragonfly/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3
/dragonfly/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3
/dragonfly/secure/lib/libcrypto/man/BN_new.3
/dragonfly/secure/lib/libcrypto/man/BN_num_bytes.3
/dragonfly/secure/lib/libcrypto/man/BN_rand.3
/dragonfly/secure/lib/libcrypto/man/BN_set_bit.3
/dragonfly/secure/lib/libcrypto/man/BN_swap.3
/dragonfly/secure/lib/libcrypto/man/BN_zero.3
/dragonfly/secure/lib/libcrypto/man/CONF_modules_free.3
/dragonfly/secure/lib/libcrypto/man/CONF_modules_load_file.3
/dragonfly/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3
/dragonfly/secure/lib/libcrypto/man/DH_generate_key.3
/dragonfly/secure/lib/libcrypto/man/DH_generate_parameters.3
/dragonfly/secure/lib/libcrypto/man/DH_get_ex_new_index.3
/dragonfly/secure/lib/libcrypto/man/DH_new.3
/dragonfly/secure/lib/libcrypto/man/DH_set_method.3
/dragonfly/secure/lib/libcrypto/man/DH_size.3
/dragonfly/secure/lib/libcrypto/man/DSA_SIG_new.3
/dragonfly/secure/lib/libcrypto/man/DSA_do_sign.3
/dragonfly/secure/lib/libcrypto/man/DSA_dup_DH.3
/dragonfly/secure/lib/libcrypto/man/DSA_generate_key.3
/dragonfly/secure/lib/libcrypto/man/DSA_generate_parameters.3
/dragonfly/secure/lib/libcrypto/man/DSA_get_ex_new_index.3
/dragonfly/secure/lib/libcrypto/man/DSA_new.3
/dragonfly/secure/lib/libcrypto/man/DSA_set_method.3
/dragonfly/secure/lib/libcrypto/man/DSA_sign.3
/dragonfly/secure/lib/libcrypto/man/DSA_size.3
/dragonfly/secure/lib/libcrypto/man/ERR_GET_LIB.3
/dragonfly/secure/lib/libcrypto/man/ERR_clear_error.3
/dragonfly/secure/lib/libcrypto/man/ERR_error_string.3
/dragonfly/secure/lib/libcrypto/man/ERR_get_error.3
/dragonfly/secure/lib/libcrypto/man/ERR_load_crypto_strings.3
/dragonfly/secure/lib/libcrypto/man/ERR_load_strings.3
/dragonfly/secure/lib/libcrypto/man/ERR_print_errors.3
/dragonfly/secure/lib/libcrypto/man/ERR_put_error.3
/dragonfly/secure/lib/libcrypto/man/ERR_remove_state.3
/dragonfly/secure/lib/libcrypto/man/ERR_set_mark.3
/dragonfly/secure/lib/libcrypto/man/EVP_BytesToKey.3
/dragonfly/secure/lib/libcrypto/man/EVP_DigestInit.3
/dragonfly/secure/lib/libcrypto/man/EVP_EncryptInit.3
/dragonfly/secure/lib/libcrypto/man/EVP_OpenInit.3
/dragonfly/secure/lib/libcrypto/man/EVP_PKEY_new.3
/dragonfly/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3
/dragonfly/secure/lib/libcrypto/man/EVP_SealInit.3
/dragonfly/secure/lib/libcrypto/man/EVP_SignInit.3
/dragonfly/secure/lib/libcrypto/man/EVP_VerifyInit.3
/dragonfly/secure/lib/libcrypto/man/OBJ_nid2obj.3
/dragonfly/secure/lib/libcrypto/man/OPENSSL_Applink.3
/dragonfly/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3
/dragonfly/secure/lib/libcrypto/man/OPENSSL_config.3
/dragonfly/secure/lib/libcrypto/man/OPENSSL_ia32cap.3
/dragonfly/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3
/dragonfly/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3
/dragonfly/secure/lib/libcrypto/man/PKCS12_create.3
/dragonfly/secure/lib/libcrypto/man/PKCS12_parse.3
/dragonfly/secure/lib/libcrypto/man/PKCS7_decrypt.3
/dragonfly/secure/lib/libcrypto/man/PKCS7_encrypt.3
/dragonfly/secure/lib/libcrypto/man/PKCS7_sign.3
/dragonfly/secure/lib/libcrypto/man/PKCS7_verify.3
/dragonfly/secure/lib/libcrypto/man/RAND_add.3
/dragonfly/secure/lib/libcrypto/man/RAND_bytes.3
/dragonfly/secure/lib/libcrypto/man/RAND_cleanup.3
/dragonfly/secure/lib/libcrypto/man/RAND_egd.3
/dragonfly/secure/lib/libcrypto/man/RAND_load_file.3
/dragonfly/secure/lib/libcrypto/man/RAND_set_rand_method.3
/dragonfly/secure/lib/libcrypto/man/RSA_blinding_on.3
/dragonfly/secure/lib/libcrypto/man/RSA_check_key.3
/dragonfly/secure/lib/libcrypto/man/RSA_generate_key.3
/dragonfly/secure/lib/libcrypto/man/RSA_get_ex_new_index.3
/dragonfly/secure/lib/libcrypto/man/RSA_new.3
/dragonfly/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3
/dragonfly/secure/lib/libcrypto/man/RSA_print.3
/dragonfly/secure/lib/libcrypto/man/RSA_private_encrypt.3
/dragonfly/secure/lib/libcrypto/man/RSA_public_encrypt.3
/dragonfly/secure/lib/libcrypto/man/RSA_set_method.3
/dragonfly/secure/lib/libcrypto/man/RSA_sign.3
/dragonfly/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3
/dragonfly/secure/lib/libcrypto/man/RSA_size.3
/dragonfly/secure/lib/libcrypto/man/SMIME_read_PKCS7.3
/dragonfly/secure/lib/libcrypto/man/SMIME_write_PKCS7.3
/dragonfly/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3
/dragonfly/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3
/dragonfly/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3
/dragonfly/secure/lib/libcrypto/man/X509_NAME_print_ex.3
/dragonfly/secure/lib/libcrypto/man/X509_new.3
/dragonfly/secure/lib/libcrypto/man/bio.3
/dragonfly/secure/lib/libcrypto/man/blowfish.3
/dragonfly/secure/lib/libcrypto/man/bn.3
/dragonfly/secure/lib/libcrypto/man/bn_internal.3
/dragonfly/secure/lib/libcrypto/man/buffer.3
/dragonfly/secure/lib/libcrypto/man/crypto.3
/dragonfly/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3
/dragonfly/secure/lib/libcrypto/man/d2i_DHparams.3
/dragonfly/secure/lib/libcrypto/man/d2i_DSAPublicKey.3
/dragonfly/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3
/dragonfly/secure/lib/libcrypto/man/d2i_RSAPublicKey.3
/dragonfly/secure/lib/libcrypto/man/d2i_X509.3
/dragonfly/secure/lib/libcrypto/man/d2i_X509_ALGOR.3
/dragonfly/secure/lib/libcrypto/man/d2i_X509_CRL.3
/dragonfly/secure/lib/libcrypto/man/d2i_X509_NAME.3
/dragonfly/secure/lib/libcrypto/man/d2i_X509_REQ.3
/dragonfly/secure/lib/libcrypto/man/d2i_X509_SIG.3
/dragonfly/secure/lib/libcrypto/man/des.3
/dragonfly/secure/lib/libcrypto/man/des_modes.7
/dragonfly/secure/lib/libcrypto/man/dh.3
/dragonfly/secure/lib/libcrypto/man/dsa.3
/dragonfly/secure/lib/libcrypto/man/ecdsa.3
/dragonfly/secure/lib/libcrypto/man/engine.3
/dragonfly/secure/lib/libcrypto/man/err.3
/dragonfly/secure/lib/libcrypto/man/evp.3
/dragonfly/secure/lib/libcrypto/man/hmac.3
/dragonfly/secure/lib/libcrypto/man/lh_stats.3
/dragonfly/secure/lib/libcrypto/man/lhash.3
/dragonfly/secure/lib/libcrypto/man/md5.3
/dragonfly/secure/lib/libcrypto/man/mdc2.3
/dragonfly/secure/lib/libcrypto/man/pem.3
/dragonfly/secure/lib/libcrypto/man/rand.3
/dragonfly/secure/lib/libcrypto/man/rc4.3
/dragonfly/secure/lib/libcrypto/man/ripemd.3
/dragonfly/secure/lib/libcrypto/man/rsa.3
/dragonfly/secure/lib/libcrypto/man/sha.3
/dragonfly/secure/lib/libcrypto/man/threads.3
/dragonfly/secure/lib/libcrypto/man/ui.3
/dragonfly/secure/lib/libcrypto/man/ui_compat.3
/dragonfly/secure/lib/libcrypto/man/x509.3
/dragonfly/secure/lib/libcrypto/opensslconf-amd64.h
/dragonfly/secure/lib/libcrypto/opensslconf-i386.h
/dragonfly/secure/lib/libssl/Makefile.man
/dragonfly/secure/lib/libssl/man/SSL_CIPHER_get_name.3
/dragonfly/secure/lib/libssl/man/SSL_COMP_add_compression_method.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_add_session.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_ctrl.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_flush_sessions.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_free.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_new.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_sess_number.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_sessions.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_cert_store.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_info_callback.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_mode.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_options.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_timeout.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_set_verify.3
/dragonfly/secure/lib/libssl/man/SSL_CTX_use_certificate.3
/dragonfly/secure/lib/libssl/man/SSL_SESSION_free.3
/dragonfly/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3
/dragonfly/secure/lib/libssl/man/SSL_SESSION_get_time.3
/dragonfly/secure/lib/libssl/man/SSL_accept.3
/dragonfly/secure/lib/libssl/man/SSL_alert_type_string.3
/dragonfly/secure/lib/libssl/man/SSL_clear.3
/dragonfly/secure/lib/libssl/man/SSL_connect.3
/dragonfly/secure/lib/libssl/man/SSL_do_handshake.3
/dragonfly/secure/lib/libssl/man/SSL_free.3
/dragonfly/secure/lib/libssl/man/SSL_get_SSL_CTX.3
/dragonfly/secure/lib/libssl/man/SSL_get_ciphers.3
/dragonfly/secure/lib/libssl/man/SSL_get_client_CA_list.3
/dragonfly/secure/lib/libssl/man/SSL_get_current_cipher.3
/dragonfly/secure/lib/libssl/man/SSL_get_default_timeout.3
/dragonfly/secure/lib/libssl/man/SSL_get_error.3
/dragonfly/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3
/dragonfly/secure/lib/libssl/man/SSL_get_ex_new_index.3
/dragonfly/secure/lib/libssl/man/SSL_get_fd.3
/dragonfly/secure/lib/libssl/man/SSL_get_peer_cert_chain.3
/dragonfly/secure/lib/libssl/man/SSL_get_peer_certificate.3
/dragonfly/secure/lib/libssl/man/SSL_get_rbio.3
/dragonfly/secure/lib/libssl/man/SSL_get_session.3
/dragonfly/secure/lib/libssl/man/SSL_get_verify_result.3
/dragonfly/secure/lib/libssl/man/SSL_get_version.3
/dragonfly/secure/lib/libssl/man/SSL_library_init.3
/dragonfly/secure/lib/libssl/man/SSL_load_client_CA_file.3
/dragonfly/secure/lib/libssl/man/SSL_new.3
/dragonfly/secure/lib/libssl/man/SSL_pending.3
/dragonfly/secure/lib/libssl/man/SSL_read.3
/dragonfly/secure/lib/libssl/man/SSL_rstate_string.3
/dragonfly/secure/lib/libssl/man/SSL_session_reused.3
/dragonfly/secure/lib/libssl/man/SSL_set_bio.3
/dragonfly/secure/lib/libssl/man/SSL_set_connect_state.3
/dragonfly/secure/lib/libssl/man/SSL_set_fd.3
/dragonfly/secure/lib/libssl/man/SSL_set_session.3
/dragonfly/secure/lib/libssl/man/SSL_set_shutdown.3
/dragonfly/secure/lib/libssl/man/SSL_set_verify_result.3
/dragonfly/secure/lib/libssl/man/SSL_shutdown.3
/dragonfly/secure/lib/libssl/man/SSL_state_string.3
/dragonfly/secure/lib/libssl/man/SSL_want.3
/dragonfly/secure/lib/libssl/man/SSL_write.3
/dragonfly/secure/lib/libssl/man/d2i_SSL_SESSION.3
/dragonfly/secure/lib/libssl/man/ssl.3
/dragonfly/secure/usr.bin/openssl/Makefile.man
/dragonfly/secure/usr.bin/openssl/man/CA.pl.1
/dragonfly/secure/usr.bin/openssl/man/asn1parse.1
/dragonfly/secure/usr.bin/openssl/man/ca.1
/dragonfly/secure/usr.bin/openssl/man/ciphers.1
/dragonfly/secure/usr.bin/openssl/man/config.5
/dragonfly/secure/usr.bin/openssl/man/crl.1
/dragonfly/secure/usr.bin/openssl/man/crl2pkcs7.1
/dragonfly/secure/usr.bin/openssl/man/dgst.1
/dragonfly/secure/usr.bin/openssl/man/dhparam.1
/dragonfly/secure/usr.bin/openssl/man/dsa.1
/dragonfly/secure/usr.bin/openssl/man/dsaparam.1
/dragonfly/secure/usr.bin/openssl/man/ec.1
/dragonfly/secure/usr.bin/openssl/man/ecparam.1
/dragonfly/secure/usr.bin/openssl/man/enc.1
/dragonfly/secure/usr.bin/openssl/man/errstr.1
/dragonfly/secure/usr.bin/openssl/man/gendsa.1
/dragonfly/secure/usr.bin/openssl/man/genrsa.1
/dragonfly/secure/usr.bin/openssl/man/nseq.1
/dragonfly/secure/usr.bin/openssl/man/ocsp.1
/dragonfly/secure/usr.bin/openssl/man/openssl.1
/dragonfly/secure/usr.bin/openssl/man/passwd.1
/dragonfly/secure/usr.bin/openssl/man/pkcs12.1
/dragonfly/secure/usr.bin/openssl/man/pkcs7.1
/dragonfly/secure/usr.bin/openssl/man/pkcs8.1
/dragonfly/secure/usr.bin/openssl/man/rand.1
/dragonfly/secure/usr.bin/openssl/man/req.1
/dragonfly/secure/usr.bin/openssl/man/rsa.1
/dragonfly/secure/usr.bin/openssl/man/rsautl.1
/dragonfly/secure/usr.bin/openssl/man/s_client.1
/dragonfly/secure/usr.bin/openssl/man/s_server.1
/dragonfly/secure/usr.bin/openssl/man/s_time.1
/dragonfly/secure/usr.bin/openssl/man/sess_id.1
/dragonfly/secure/usr.bin/openssl/man/smime.1
/dragonfly/secure/usr.bin/openssl/man/speed.1
/dragonfly/secure/usr.bin/openssl/man/spkac.1
/dragonfly/secure/usr.bin/openssl/man/verify.1
/dragonfly/secure/usr.bin/openssl/man/version.1
/dragonfly/secure/usr.bin/openssl/man/x509.1
/dragonfly/secure/usr.bin/openssl/man/x509v3_config.5
/dragonfly/share/examples/kld/cdev/module/cdev.c
/dragonfly/share/examples/kld/cdev/module/cdevmod.c
/dragonfly/share/examples/kld/dyn_sysctl/dyn_sysctl.c
/dragonfly/share/examples/kld/syscall/module/syscall.c
/dragonfly/share/examples/kld/syscall/test/call.c
/dragonfly/share/man/man4/iir.4
/dragonfly/share/man/man4/isa.4
/dragonfly/share/man/man4/man4.i386/Makefile
/dragonfly/share/man/man4/man4.i386/ar.4
/dragonfly/share/man/man4/man4.i386/sr.4
/dragonfly/share/man/man7/release.7
/dragonfly/share/man/man9/bus_dma.9
/dragonfly/share/man/man9/priv.9
/dragonfly/share/mk/bsd.lib.mk
/dragonfly/sys/boot/Makefile
/dragonfly/sys/boot/pc32/Makefile.inc
/dragonfly/sys/boot/pc32/boot0/Makefile
/dragonfly/sys/boot/pc32/boot2/Makefile
/dragonfly/sys/boot/pc32/btx/btx/Makefile
/dragonfly/sys/boot/pc32/pxeldr/Makefile
/dragonfly/sys/boot/pc32/pxeldr_tftp/Makefile
/dragonfly/sys/bus/isa/amd64/isa_compat.h
/dragonfly/sys/bus/isa/i386/isa_compat.h
/dragonfly/sys/bus/usb/uhci_pci.c
/dragonfly/sys/conf/files
/dragonfly/sys/conf/kern.post.mk
/dragonfly/sys/config/GENERIC
/dragonfly/sys/config/LINT
/dragonfly/sys/dev/agp/agp_i810.c
/dragonfly/sys/dev/misc/syscons/syscons.c
/dragonfly/sys/dev/netif/ale/if_ale.c
/dragonfly/sys/dev/netif/re/if_re.c
/dragonfly/sys/dev/netif/sr/Makefile
/dragonfly/sys/dev/netif/sr/if_sr.c
/dragonfly/sys/dev/netif/sr/if_srregs.h
/dragonfly/sys/dev/raid/iir/iir.c
/dragonfly/sys/dev/raid/iir/iir.h
/dragonfly/sys/dev/raid/iir/iir_ctrl.c
/dragonfly/sys/dev/raid/iir/iir_pci.c
/dragonfly/sys/dev/usbmisc/ubt/Makefile
/dragonfly/sys/dev/virtual/disk/vdisk.c
/dragonfly/sys/kern/imgact_resident.c
/dragonfly/sys/kern/kern_acct.c
/dragonfly/sys/netgraph/sync_sr/Makefile
/dragonfly/sys/platform/pc32/conf/files
/dragonfly/sys/platform/pc32/i386/busdma_machdep.c
/dragonfly/sys/vfs/hammer/hammer.h
/dragonfly/tools/regression/priv/Makefile
/dragonfly/tools/regression/priv/README
/dragonfly/tools/regression/priv/test.c
/dragonfly/tools/regression/priv/test.h
/dragonfly/tools/regression/priv/test_acct.c
/dragonfly/tools/tools/editing/dragonfly.el
/dragonfly/usr.bin/login/Makefile
/dragonfly/usr.bin/login/README
/dragonfly/usr.bin/login/login.1
/dragonfly/usr.bin/login/login.c
/dragonfly/usr.bin/login/login.h
/dragonfly/usr.bin/login/login_fbtab.c
/dragonfly/usr.bin/login/pathnames.h
/dragonfly/usr.bin/rsh/Makefile
/dragonfly/usr.bin/rsh/rsh.1
/dragonfly/usr.bin/rsh/rsh.c
/dragonfly/usr.bin/undo/undo.c
/dragonfly/usr.sbin/dntpd/client.h
/dragonfly/usr.sbin/dntpd/defs.h
/dragonfly/usr.sbin/dntpd/dntpd.8
/dragonfly/usr.sbin/dntpd/main.c
/dragonfly/usr.sbin/dntpd/socket.c
9bd170a103-Jan-2009 Peter Avalos <pavalos@theshell.com>

Another temporary hack to hide reentrant netdb functions.

This should help pkgsrc before the release. After the release we should
figure out what it takes to get these thread-safe functions working

Another temporary hack to hide reentrant netdb functions.

This should help pkgsrc before the release. After the release we should
figure out what it takes to get these thread-safe functions working with
3rd party programs.

show more ...


/dragonfly/Makefile.inc1
/dragonfly/Makefile_upgrade.inc
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/flow.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/flow.h
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_configure.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_install.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_subpart.c
/dragonfly/etc/Makefile
/dragonfly/etc/inetd.conf
/dragonfly/etc/pam.d/Makefile
/dragonfly/etc/pam.d/ftpd
/dragonfly/etc/pam.d/login
/dragonfly/etc/pam.d/passwd
/dragonfly/etc/pam.d/su
/dragonfly/etc/pam.d/system
netdb.h
/dragonfly/lib/Makefile
/dragonfly/lib/libc/net/Makefile.inc
/dragonfly/lib/libc/net/rcmd.3
/dragonfly/lib/libutil/Makefile
/dragonfly/lib/libutil/libutil.h
/dragonfly/lib/libutil/pw_util.c
/dragonfly/lib/pam_module/Makefile
/dragonfly/libexec/Makefile
/dragonfly/libexec/ftpd/Makefile
/dragonfly/libexec/ftpd/extern.h
/dragonfly/libexec/ftpd/ftpchroot.5
/dragonfly/libexec/ftpd/ftpcmd.y
/dragonfly/libexec/ftpd/ftpd.8
/dragonfly/libexec/ftpd/ftpd.c
/dragonfly/libexec/ftpd/popen.c
/dragonfly/nrelease/gui/etc/rc.conf
/dragonfly/nrelease/root/etc/rc.conf
/dragonfly/share/installer/cmdnames.conf
/dragonfly/share/mk/bsd.libnames.mk
/dragonfly/usr.bin/Makefile
/dragonfly/usr.bin/chpass/Makefile
/dragonfly/usr.bin/chpass/chpass.1
/dragonfly/usr.bin/chpass/chpass.c
/dragonfly/usr.bin/chpass/chpass.h
/dragonfly/usr.bin/chpass/edit.c
/dragonfly/usr.bin/chpass/field.c
/dragonfly/usr.bin/chpass/table.c
/dragonfly/usr.bin/chpass/util.c
/dragonfly/usr.bin/passwd/Makefile
/dragonfly/usr.bin/passwd/passwd.1
/dragonfly/usr.bin/passwd/passwd.c
/dragonfly/usr.bin/su/Makefile
/dragonfly/usr.bin/su/su.1
/dragonfly/usr.bin/su/su.c
/dragonfly/usr.sbin/inetd/inetd.8
/dragonfly/usr.sbin/rmt/rmt.8
75ce8d9f02-Jan-2009 Hasso Tepper <hasso@estpak.ee>

Temporary hack out reentrant user database functions.

Bringing in reentrant user database functions caused major issues with
pkgsrc and there is no time to fix these (2008Q4 is released really
soon

Temporary hack out reentrant user database functions.

Bringing in reentrant user database functions caused major issues with
pkgsrc and there is no time to fix these (2008Q4 is released really
soon now). Also there seem to be some missing pieces to conform SUSv3.

The hack will be reverted after 2.2 release.

The patch by pavalos@, requested by me.

show more ...


/dragonfly/Makefile.inc1
/dragonfly/Makefile_upgrade.inc
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/flow.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_subpart_hammer.c
/dragonfly/crypto/openssh-5/ssh_namespace.h
grp.h
pwd.h
/dragonfly/lib/libc/gen/Makefile.inc
/dragonfly/lib/libc/net/getnetent.3
/dragonfly/lib/libc/rpc/rpc.3
/dragonfly/lib/libc/rpc/rpc.5
/dragonfly/lib/libpam/pam_mod_misc.h
/dragonfly/lib/pam_module/Makefile
/dragonfly/lib/pam_module/Makefile.inc
/dragonfly/lib/pam_module/pam_chroot/Makefile
/dragonfly/lib/pam_module/pam_chroot/pam_chroot.8
/dragonfly/lib/pam_module/pam_chroot/pam_chroot.c
/dragonfly/lib/pam_module/pam_cleartext_pass_ok/Makefile
/dragonfly/lib/pam_module/pam_deny/Makefile
/dragonfly/lib/pam_module/pam_echo/Makefile
/dragonfly/lib/pam_module/pam_echo/pam_echo.8
/dragonfly/lib/pam_module/pam_echo/pam_echo.c
/dragonfly/lib/pam_module/pam_exec/Makefile
/dragonfly/lib/pam_module/pam_exec/pam_exec.8
/dragonfly/lib/pam_module/pam_exec/pam_exec.c
/dragonfly/lib/pam_module/pam_ftpusers/Makefile
/dragonfly/lib/pam_module/pam_ftpusers/pam_ftpusers.8
/dragonfly/lib/pam_module/pam_ftpusers/pam_ftpusers.c
/dragonfly/lib/pam_module/pam_group/Makefile
/dragonfly/lib/pam_module/pam_group/pam_group.8
/dragonfly/lib/pam_module/pam_group/pam_group.c
/dragonfly/lib/pam_module/pam_guest/Makefile
/dragonfly/lib/pam_module/pam_guest/pam_guest.8
/dragonfly/lib/pam_module/pam_guest/pam_guest.c
/dragonfly/lib/pam_module/pam_krb5/Makefile
/dragonfly/lib/pam_module/pam_ksu/Makefile
/dragonfly/lib/pam_module/pam_ksu/pam_ksu.8
/dragonfly/lib/pam_module/pam_ksu/pam_ksu.c
/dragonfly/lib/pam_module/pam_lastlog/Makefile
/dragonfly/lib/pam_module/pam_lastlog/pam_lastlog.8
/dragonfly/lib/pam_module/pam_lastlog/pam_lastlog.c
/dragonfly/lib/pam_module/pam_login_access/Makefile
/dragonfly/lib/pam_module/pam_login_access/login.access.5
/dragonfly/lib/pam_module/pam_login_access/login_access.c
/dragonfly/lib/pam_module/pam_login_access/pam_login_access.8
/dragonfly/lib/pam_module/pam_login_access/pam_login_access.c
/dragonfly/lib/pam_module/pam_login_access/pam_login_access.h
/dragonfly/lib/pam_module/pam_nologin/Makefile
/dragonfly/lib/pam_module/pam_opie/Makefile
/dragonfly/lib/pam_module/pam_opie/pam_opie.c
/dragonfly/lib/pam_module/pam_opieaccess/Makefile
/dragonfly/lib/pam_module/pam_opieaccess/pam_opieaccess.8
/dragonfly/lib/pam_module/pam_permit/Makefile
/dragonfly/lib/pam_module/pam_radius/Makefile
/dragonfly/lib/pam_module/pam_radius/pam_radius.c
/dragonfly/lib/pam_module/pam_rhosts/Makefile
/dragonfly/lib/pam_module/pam_rhosts/pam_rhosts.8
/dragonfly/lib/pam_module/pam_rhosts/pam_rhosts.c
/dragonfly/lib/pam_module/pam_rootok/Makefile
/dragonfly/lib/pam_module/pam_rootok/pam_rootok.8
/dragonfly/lib/pam_module/pam_rootok/pam_rootok.c
/dragonfly/lib/pam_module/pam_securetty/Makefile
/dragonfly/lib/pam_module/pam_securetty/pam_securetty.8
/dragonfly/lib/pam_module/pam_securetty/pam_securetty.c
/dragonfly/lib/pam_module/pam_self/Makefile
/dragonfly/lib/pam_module/pam_self/pam_self.8
/dragonfly/lib/pam_module/pam_self/pam_self.c
/dragonfly/lib/pam_module/pam_ssh/Makefile
/dragonfly/lib/pam_module/pam_ssh/pam_ssh.8
/dragonfly/lib/pam_module/pam_ssh/pam_ssh.c
/dragonfly/lib/pam_module/pam_tacplus/Makefile
/dragonfly/lib/pam_module/pam_unix/Makefile
/dragonfly/lib/pam_module/pam_unix/pam_unix.8
/dragonfly/lib/pam_module/pam_unix/pam_unix.c
/dragonfly/sbin/hammer/cmd_cleanup.c
/dragonfly/sbin/mountd/mountd.8
/dragonfly/sbin/nfsiod/nfsiod.8
/dragonfly/secure/Makefile.ssh.common
/dragonfly/share/examples/rconfig/hammer.sh
/dragonfly/share/installer/cmdnames.conf
/dragonfly/share/man/man4/Makefile
/dragonfly/share/man/man4/age.4
/dragonfly/share/man/man4/ale.4
/dragonfly/share/man/man5/rc.conf.5
/dragonfly/share/man/man9/Makefile
/dragonfly/share/man/man9/ktr.9
/dragonfly/share/misc/pci_vendors
/dragonfly/share/mk/bsd.libnames.mk
/dragonfly/sys/boot/pc32/boot2/Makefile
/dragonfly/sys/bus/pci/pcireg.h
/dragonfly/sys/dev/netif/Makefile
/dragonfly/sys/dev/netif/age/Makefile
/dragonfly/sys/dev/netif/age/if_age.c
/dragonfly/sys/dev/netif/age/if_agereg.h
/dragonfly/sys/dev/netif/age/if_agevar.h
/dragonfly/sys/kern/kern_jail.c
/dragonfly/usr.sbin/jail/jail.8
ad7a245701-Jan-2009 Sascha Wildner <saw@online.de>

Re-add ascii2addr() and addr2ascii() prototypes.


/dragonfly/COPYRIGHT
/dragonfly/Makefile.inc1
/dragonfly/bin/mv/mv.c
/dragonfly/bin/ps/print.c
/dragonfly/bin/rm/rm.c
/dragonfly/contrib/bind-9.3/lib/bind/inet/inet_net_ntop.c
/dragonfly/contrib/bind-9.3/lib/bind/inet/inet_ntop.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/Makefile
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/conf/cmdnames.conf
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/flow.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/flow.h
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn.h
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_configure.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_disk.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_install.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_subpart.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/backend/installer/fn_subpart_hammer.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/lib/libinstaller/diskutil.c
/dragonfly/contrib/bsdinstaller-1.1.6/src/lib/libinstaller/diskutil.h
/dragonfly/contrib/smbfs/smbutil/dumptree.c
arpa/inet.h
/dragonfly/lib/libc/Makefile.inc
/dragonfly/lib/libc/net/Makefile.inc
/dragonfly/lib/libstand/hammerread.c
/dragonfly/lib/libutil/Makefile
/dragonfly/lib/libutil/flopen.3
/dragonfly/lib/libutil/flopen.c
/dragonfly/lib/libutil/libutil.h
/dragonfly/libexec/rpc.rquotad/rquotad.c
/dragonfly/nrelease/Makefile
/dragonfly/sbin/disklabel/disklabel.c
/dragonfly/share/examples/rconfig/hammer.sh
/dragonfly/share/man/man4/Makefile
/dragonfly/share/man/man4/ale.4
/dragonfly/share/man/man4/jme.4
/dragonfly/share/man/man4/vga.4
/dragonfly/share/man/man5/rc.conf.5
/dragonfly/share/man/man9/priv.9
/dragonfly/sys/Makefile
/dragonfly/sys/boot/pc32/boot0/Makefile
/dragonfly/sys/boot/pc32/boot2/Makefile
/dragonfly/sys/boot/pc32/boot2/boot1.S
/dragonfly/sys/boot/pc32/boot2/boot2.c
/dragonfly/sys/boot/pc32/bootasm.h
/dragonfly/sys/boot/pc32/libi386/biosdisk.c
/dragonfly/sys/boot/pc32/loader/conf.c
/dragonfly/sys/conf/files
/dragonfly/sys/dev/disk/ata/atapi-cd.c
/dragonfly/sys/dev/disk/fd/fd.c
/dragonfly/sys/dev/disk/nata/atapi-cd.c
/dragonfly/sys/dev/disk/vn/vn.c
/dragonfly/sys/dev/drm/drmP.h
/dragonfly/sys/dev/misc/dcons/dcons_os.c
/dragonfly/sys/dev/misc/nmdm/nmdm.c
/dragonfly/sys/dev/misc/spigot/spigot.c
/dragonfly/sys/dev/misc/syscons/syscons.c
/dragonfly/sys/dev/misc/syscons/sysmouse.c
/dragonfly/sys/dev/netif/Makefile
/dragonfly/sys/dev/netif/ale/Makefile
/dragonfly/sys/dev/netif/ale/if_ale.c
/dragonfly/sys/dev/netif/ale/if_alereg.h
/dragonfly/sys/dev/netif/ale/if_alevar.h
/dragonfly/sys/dev/netif/an/if_an.c
/dragonfly/sys/dev/netif/ath/hal/ah_osdep.c
/dragonfly/sys/dev/netif/cx/cx.c
/dragonfly/sys/dev/netif/iwi/if_iwi.c
/dragonfly/sys/dev/netif/jme/if_jme.c
/dragonfly/sys/dev/netif/jme/if_jmereg.h
/dragonfly/sys/dev/netif/mii_layer/Makefile
/dragonfly/sys/dev/netif/mii_layer/atphy.c
/dragonfly/sys/dev/netif/mii_layer/atphyreg.h
/dragonfly/sys/dev/netif/mii_layer/miidevs
/dragonfly/sys/dev/netif/mii_layer/miidevs.h
/dragonfly/sys/dev/netif/ndis/if_ndis.c
/dragonfly/sys/dev/netif/sbni/if_sbni.c
/dragonfly/sys/dev/netif/sbsh/if_sbsh.c
/dragonfly/sys/dev/netif/wi/if_wi.c
/dragonfly/sys/dev/netif/wl/if_wl.c
/dragonfly/sys/dev/raid/asr/asr.c
/dragonfly/sys/dev/raid/vinum/vinum.c
/dragonfly/sys/dev/raid/vinum/vinumhdr.h
/dragonfly/sys/dev/serial/cy/cy.c
/dragonfly/sys/dev/serial/dgb/dgm.c
/dragonfly/sys/dev/serial/digi/digi.c
/dragonfly/sys/dev/serial/rc/rc.c
/dragonfly/sys/dev/serial/rp/rp.c
/dragonfly/sys/dev/serial/si/si.c
/dragonfly/sys/dev/serial/sio/sio.c
/dragonfly/sys/dev/serial/stl/stallion.c
/dragonfly/sys/dev/serial/stli/istallion.c
/dragonfly/sys/dev/usbmisc/ucom/ucom.c
/dragonfly/sys/dev/usbmisc/umass/Makefile
/dragonfly/sys/emulation/43bsd/43bsd_hostinfo.c
/dragonfly/sys/emulation/dragonfly12/dfbsd12_stat.c
/dragonfly/sys/emulation/linux/i386/linprocfs/linprocfs_vnops.c
/dragonfly/sys/emulation/linux/i386/linux_machdep.c
/dragonfly/sys/emulation/linux/linux_misc.c
/dragonfly/sys/emulation/linux/linux_uid16.c
/dragonfly/sys/kern/imgact_elf.c
/dragonfly/sys/kern/imgact_resident.c
/dragonfly/sys/kern/kern_acct.c
/dragonfly/sys/kern/kern_exec.c
/dragonfly/sys/kern/kern_exit.c
/dragonfly/sys/kern/kern_fp.c
/dragonfly/sys/kern/kern_jail.c
/dragonfly/sys/kern/kern_linker.c
/dragonfly/sys/kern/kern_memio.c
/dragonfly/sys/kern/kern_ntptime.c
/dragonfly/sys/kern/kern_plimit.c
/dragonfly/sys/kern/kern_prot.c
/dragonfly/sys/kern/kern_resource.c
/dragonfly/sys/kern/kern_shutdown.c
/dragonfly/sys/kern/kern_spinlock.c
/dragonfly/sys/kern/kern_sysctl.c
/dragonfly/sys/kern/kern_syslink.c
/dragonfly/sys/kern/kern_time.c
/dragonfly/sys/kern/kern_usched.c
/dragonfly/sys/kern/kern_varsym.c
/dragonfly/sys/kern/kern_xxx.c
/dragonfly/sys/kern/subr_prf.c
/dragonfly/sys/kern/sys_process.c
/dragonfly/sys/kern/sysv_ipc.c
/dragonfly/sys/kern/sysv_msg.c
/dragonfly/sys/kern/tty.c
/dragonfly/sys/kern/tty_cons.c
/dragonfly/sys/kern/tty_pty.c
/dragonfly/sys/kern/vfs_helper.c
/dragonfly/sys/kern/vfs_syscalls.c
/dragonfly/sys/kern/vfs_vnops.c
/dragonfly/sys/net/bridge/if_bridge.c
/dragonfly/sys/net/gre/if_gre.c
/dragonfly/sys/net/i4b/driver/i4b_ipr.c
/dragonfly/sys/net/if.c
/dragonfly/sys/net/if_llc.h
/dragonfly/sys/net/pf/if_pfsync.c
/dragonfly/sys/net/ppp/if_ppp.c
/dragonfly/sys/net/ppp_layer/ppp_tty.c
/dragonfly/sys/net/raw_usrreq.c
/dragonfly/sys/net/rtsock.c
/dragonfly/sys/net/sl/if_sl.c
/dragonfly/sys/net/tap/if_tap.c
/dragonfly/sys/net/tun/if_tun.c
/dragonfly/sys/netbt/hci_ioctl.c
/dragonfly/sys/netbt/hci_socket.c
/dragonfly/sys/netgraph/socket/ng_socket.c
/dragonfly/sys/netgraph/tty/ng_tty.c
/dragonfly/sys/netinet/in.c
/dragonfly/sys/netinet/in_pcb.c
/dragonfly/sys/netinet/in_var.h
/dragonfly/sys/netinet/ip_carp.c
/dragonfly/sys/netinet/ip_divert.c
/dragonfly/sys/netinet/ip_output.c
/dragonfly/sys/netinet/raw_ip.c
/dragonfly/sys/netinet/sctp_pcb.c
/dragonfly/sys/netinet/sctp_usrreq.c
/dragonfly/sys/netinet/tcp_subr.c
/dragonfly/sys/netinet/udp_usrreq.c
/dragonfly/sys/netinet6/in6.c
/dragonfly/sys/netinet6/in6_pcb.c
/dragonfly/sys/netinet6/in6_src.c
/dragonfly/sys/netinet6/ip6_input.c
/dragonfly/sys/netinet6/ip6_output.c
/dragonfly/sys/netinet6/raw_ip6.c
/dragonfly/sys/netinet6/udp6_output.c
/dragonfly/sys/netinet6/udp6_usrreq.c
/dragonfly/sys/netproto/802_11/wlan/ieee80211_dragonfly.c
/dragonfly/sys/netproto/802_11/wlan/ieee80211_ioctl.c
/dragonfly/sys/netproto/atalk/at_control.c
/dragonfly/sys/netproto/atalk/ddp_usrreq.c
/dragonfly/sys/netproto/atm/atm_usrreq.c
/dragonfly/sys/netproto/atm/kern_include.h
/dragonfly/sys/netproto/ipx/ipx.c
/dragonfly/sys/netproto/ipx/ipx_pcb.c
/dragonfly/sys/netproto/ipx/ipx_usrreq.c
/dragonfly/sys/netproto/ncp/ncp_conn.c
/dragonfly/sys/netproto/ncp/ncp_login.c
/dragonfly/sys/netproto/ncp/ncp_ncp.c
/dragonfly/sys/netproto/ncp/ncp_subr.h
/dragonfly/sys/netproto/smb/smb_conn.c
/dragonfly/sys/netproto/smb/smb_subr.h
/dragonfly/sys/platform/pc32/gnu/isa/dgb.c
/dragonfly/sys/platform/pc32/i386/machdep.c
/dragonfly/sys/platform/pc32/i386/sys_machdep.c
/dragonfly/sys/platform/pc32/i386/vm86.c
/dragonfly/sys/platform/pc64/amd64/machdep.c
/dragonfly/sys/platform/vkernel/conf/files
/dragonfly/sys/sys/copyright.h
/dragonfly/sys/sys/priv.h
/dragonfly/sys/sys/serialize.h
/dragonfly/sys/sys/syslimits.h
/dragonfly/sys/vfs/gnu/ext2fs/ext2_vfsops.c
/dragonfly/sys/vfs/gnu/ext2fs/ext2_vnops.c
/dragonfly/sys/vfs/hammer/hammer.h
/dragonfly/sys/vfs/hammer/hammer_btree.c
/dragonfly/sys/vfs/hammer/hammer_cursor.c
/dragonfly/sys/vfs/hammer/hammer_flusher.c
/dragonfly/sys/vfs/hammer/hammer_inode.c
/dragonfly/sys/vfs/hammer/hammer_ioctl.c
/dragonfly/sys/vfs/hammer/hammer_ondisk.c
/dragonfly/sys/vfs/hammer/hammer_transaction.c
/dragonfly/sys/vfs/hammer/hammer_vfsops.c
/dragonfly/sys/vfs/hpfs/hpfs_vnops.c
/dragonfly/sys/vfs/isofs/cd9660/cd9660_vfsops.c
/dragonfly/sys/vfs/msdosfs/msdosfs_vnops.c
/dragonfly/sys/vfs/nfs/nfs_serv.c
/dragonfly/sys/vfs/nfs/nfs_syscalls.c
/dragonfly/sys/vfs/procfs/procfs.h
/dragonfly/sys/vfs/procfs/procfs_ctl.c
/dragonfly/sys/vfs/procfs/procfs_dbregs.c
/dragonfly/sys/vfs/procfs/procfs_fpregs.c
/dragonfly/sys/vfs/procfs/procfs_mem.c
/dragonfly/sys/vfs/procfs/procfs_regs.c
/dragonfly/sys/vfs/procfs/procfs_status.c
/dragonfly/sys/vfs/procfs/procfs_vnops.c
/dragonfly/sys/vfs/smbfs/smbfs_vnops.c
/dragonfly/sys/vfs/udf/udf_vfsops.c
/dragonfly/sys/vfs/ufs/ufs_vfsops.c
/dragonfly/sys/vfs/ufs/ufs_vnops.c
/dragonfly/sys/vm/vm_mmap.c
/dragonfly/sys/vm/vm_swap.c
/dragonfly/usr.bin/lastcomm/lastcomm.c
/dragonfly/usr.bin/systat/pigs.c
/dragonfly/usr.sbin/Makefile
/dragonfly/usr.sbin/installer/dfuibe_installer/Makefile
/dragonfly/usr.sbin/nscd/Makefile
/dragonfly/usr.sbin/nscd/nscd.c
/dragonfly/usr.sbin/nscd/pidfile.c
/dragonfly/usr.sbin/nscd/pidfile.h
/dragonfly/usr.sbin/nscd/query.c

1...<<212223242526272829