jeffs
45de998997
Handle MIPS little endian output better when bfd outputs magic 8 (MIPS BE)
...
instead of 10 (MIPS LE).
2000-08-10 19:12:40 +00:00
thorpej
d35819d6e3
krb5_get_in_tkt() (called by krb5_get_in_tkt_with_password()) may
...
eventually call krb5_free_principal() via krb5_free_creds_contents(),
(when it succeeds, in particular). Check for the creds.server
already being freed, and don't free it again.
2000-08-09 17:44:18 +00:00
mrg
14e83027c8
add sparc64 support.
2000-08-09 14:22:15 +00:00
augustss
6845241166
Fix typo so the Makefile can be used again.
2000-08-09 14:21:44 +00:00
ad
a6ecf36d33
On NetBSD, the effect of the maximum age specification and specific interval
...
specification are independant of one another.
2000-08-09 13:57:22 +00:00
mrg
88363a496c
enable fdformat on sparc64, too.
2000-08-09 11:38:47 +00:00
assar
aa97fc7fa5
set the correct owner on the krb5 ccache
2000-08-09 02:15:27 +00:00
lukem
e3cdb47e47
* implement parseport(), which takes a string and attempts to convert
...
it to a numeric port number
* use parseport() in parse_url() and hookup()
* don't try and lookup the port number using getaddrinfo(), as it's too hard
to separate a failed host name lookup from a failed service name lookup.
this was causing lossage on systems that don't have `http' in services(5)
(such as solaris), but only crept in when we started using getaddrinfo()
unconditionally.
2000-08-06 08:51:22 +00:00
enami
6fc4763861
If -H, clear FTS_LOGICAL and set FTS_PHYSICAL as well as FTS_COMFOLLOW.
...
If -L, clear FTS_PHYSICAL as well as FTS_COMFOLLOW.
2000-08-04 09:01:05 +00:00
enami
96d6ef202a
Describe -h option and xref lchflags.
2000-08-04 08:08:02 +00:00
enami
75015c55d3
- Introduce new flag -h to operate on symlink.
...
- Don't print (first) pathname on fts_open failure; it doesn't make sense.
2000-08-04 08:06:57 +00:00
assar
4bb88e6fb1
forced: previous was really: remove libvers, it's not being used
2000-08-03 22:58:32 +00:00
assar
6d7f2da1a1
remove -lvers, it's not used
2000-08-03 22:56:29 +00:00
assar
fc90224f06
link against the not-installed libvers
2000-08-03 22:47:37 +00:00
christos
e8b09532bb
PR/10714: SUNAGAWA Keiki: Add newer hpux support, but without removing the
...
old hpux support.
2000-08-03 15:53:24 +00:00
ad
6b38e4b314
__RCSID().
2000-08-03 08:25:41 +00:00
assar
549a4d9cdc
update build infrastructure for heimdal 0.3a
2000-08-03 04:02:29 +00:00
thorpej
db82701e06
Fix a problem with the "distribution" target pointed out
...
by itojun@netbsd.org .
2000-08-02 17:04:23 +00:00
thorpej
3b5855e58d
Don't syslog that krb5_init_context() failed if it failed due
...
to Kerberos not being configured on the system.
2000-08-02 16:51:17 +00:00
jwise
1c529a36f0
yes(1) dates back at least to v7 Unix. Closes PR bin/10403
2000-08-02 15:39:17 +00:00
thorpej
9e2765e474
If neither Kerberos IV or Kerberos V are configured, don't
...
issue "Warning: no Kerberos tickets issued."
2000-08-02 05:58:35 +00:00
lukem
29d497f491
- rename NO_QUAD to NO_LONG_LONG, QUAD* -> LL* and add ULL* (unsigned)
...
equivalents. name change suggested by Klaus Klein <kjk@netbsd.org>
- change defined(BSD4_4) || HAVE_SIN_LEN tests into HAVE_SOCKADDR_SA_LEN,
and set the latter if BSD4_4 exists
2000-08-01 22:47:25 +00:00
lukem
8c77deb113
- we can't just rename BSD4_4 -> HAVE_SIN_LEN, since bsd systems define BSD4_4;
...
change tests to test for either defined(BSD4_4) or HAVE_SIN_LEN
- more KNF
2000-07-31 00:56:07 +00:00
hubertf
6f5f0322c6
Allow file(1) Magic file to be recognized as such by file(1)
...
Noted in PR 10712 by Jun-ichiro itojun Hagino <itojun@itojun.org>
2000-07-31 00:39:29 +00:00
lukem
88fb659da9
* always set (struct sockinet).su_len after getsockname() et al, so
...
that it's valid on systems which don't have sin_len and need the `compat'
version
* fix the accept() in dataconn() to use the correct struct elem
2000-07-30 09:32:09 +00:00
lukem
fad4243147
* always use getaddrinfo() and getnameinfo() instead of maintaining two code
...
paths. (lukemftp will provide replacements for these on older systems)
* rename __USE_SELECT to USE_SELECT
* rename BSD4_4 to HAVE_SIN_LEN
* replace union sockunion {} with struct sockinet {}, and modify the code
accordingly. this is possibly more portable, as it doesn't rely upon the
structure alignment within the union for our own stuff.
(XXX: haven't tested the ipv6 stuff)
2000-07-30 06:10:43 +00:00
lukem
241987dc61
clean up NO_QUAD support: create helper #defines and use as appropriate:
...
#define NOQUAD ! NOQUAD
------- ------ - ------
QUADF "%ld" "%lld"
QUADFP(x) "%" x "ld" "%" x "lld"
QUADT long long long
STRTOL(x,y,z) strtol(x,y,z) strtoll(x,y,z)
2000-07-30 04:42:37 +00:00
martin
ce931ccccf
Just another skey compile fix.
2000-07-29 08:40:38 +00:00
thorpej
c48cedd0f4
Filter out non-alpha-numeric characters from the default
...
seed. No point in generating one that skey(1) will reject.
2000-07-28 19:19:23 +00:00
thorpej
4032d79eac
Rename ssh_config to ssh.conf and sshd_config to sshd.conf, for
...
consistency with other NetBSD configuration files, and to avoid
clashes with other SSH implementations.
2000-07-28 16:43:49 +00:00
thorpej
676ddec5ac
skey_keyinfo() returns const.
2000-07-28 16:36:53 +00:00
lukem
6ac5c69c3e
rename "opts" to "remopts", so people used to "o host" don't get bitten...
2000-07-28 12:01:40 +00:00
lukem
ef0145331b
rename "opts" to "remopts", so people used to "o host" don't get bitten...
2000-07-28 11:45:11 +00:00
lukem
d49ddf30cd
no trailing , on last item in enum
2000-07-28 11:03:13 +00:00
mjl
93afd38b8d
Just return if /etc/skeykeys is missing, and remove debugging echo.
2000-07-27 14:40:58 +00:00
mrg
1a3492999b
mark the installed ioctl.h & ioctl_compat.h PRECIOUS; if mkioctls fails, don't delete them!
2000-07-27 11:51:14 +00:00
cgd
08f606dddb
If unprivileged, don't even look up user or group name. (always set uid and
...
gid to -1.) Don't bother checking 'unpriv' when it's redundant with the
uid/gid == -1 check. (Doing the uid/gid handling consistently also fixes
the directory-creation code, which didn't check unpriv and did chmod/chown
anyway.) One minor spaces/tabs cleanup at one of the uid/gid checks.
2000-07-27 03:57:50 +00:00
cgd
72b221b09c
clean up documentation of STRIP envioronment var.
2000-07-27 03:48:08 +00:00
cgd
3ae828ab49
invoke stripprog using execlp. (this mirrors the behaviour that would
...
be had from using the shell to invoke strip, and removes an unnecessary
limitation that the STRIP environment variable be an absolute path.)
2000-07-27 03:45:02 +00:00
cgd
b653335cf3
don't build lint libs if MKLINT == no
2000-07-27 03:29:28 +00:00
mycroft
2dc192ae06
Use MAP_SHARED.
2000-07-27 02:58:57 +00:00
cgd
100e87de11
'${CC:-cc} -E' rather than 'cpp': want to use a cross-compiler if
...
appropriate, but worse: 'cpp' (real-UNIX or stock gnu) takes args
[infile [outfile]]. I.e., the second arg (ioctl_compat.h) would
end up being nuked by this script if using a vendor or stock gnu cpp!
Our /usr/bin/cpp works Differently.
2000-07-27 01:36:56 +00:00
mycroft
8401b85a70
Unmap from mapbase, not relocbase.
2000-07-26 19:39:07 +00:00
mycroft
9822fee1d0
Make the code to determine whether we need to byte-swap headers at least
...
pretend to work on 64-bit hosts (and not overrun an array).
2000-07-26 15:19:35 +00:00
simonb
9c7e8fa55d
Remove white space after \ line continuation char.
2000-07-26 15:16:28 +00:00
thorpej
79e0feb179
Install ssh_config and sshd_config for `distribution' target.
2000-07-25 18:54:09 +00:00
thorpej
8f6bf0e264
Add a build-framework for an SSH implementation which is not
...
yet part of the NetBSD source tree. These Makefiles are a
noop until such time as that implementation is committed.
2000-07-25 16:32:24 +00:00
ad
1784978a24
- Wrap line.
...
- Minor oops in a comment.
2000-07-24 15:15:25 +00:00
ad
1b7b60f391
RCS ID police.
2000-07-24 11:59:38 +00:00
mycroft
98987090cb
Fix library order.
2000-07-23 22:23:14 +00:00