wiz
d0fb2fc679
Use MaxPathSize instead of PATH_MAX (like everywhere else here).
2006-01-08 12:20:54 +00:00
yamt
895fec49e1
reset hdrcnt whenever printing a header.
2006-01-08 08:47:16 +00:00
christos
ca0029edd3
Add checks for valid shell. From Liam Foy.
2006-01-06 18:11:00 +00:00
yamt
db8ef563ea
mention /var/db/mountdtab.
2006-01-05 10:41:03 +00:00
yamt
5997340664
do_nfssvc: remove code to go up the path, as it's nonsense and
...
sometimes even harmful.
2006-01-05 10:38:29 +00:00
christos
5d62e1710e
sync with pkgsrc version.
2006-01-04 23:36:14 +00:00
garbled
97f8851cc8
Address PR bin/12112
...
Lpd has the ability to start on a port other than "printer" but has no
way to connect to a remote lpd on that port. This change adds the
ability to specify port@host in the rm element of printcap(5). Tested to
work with both a standard lpd setup and one running on special ports.
2006-01-04 15:32:50 +00:00
yamt
f79b461ad5
update MAXNFSDCNT and bump date.
2006-01-01 17:03:54 +00:00
christos
36134a63ad
- don't leak the ipv6 file descriptor when we close
...
- fix packet statistics
- don't check errno if n != -1
- check more error conditions
- relinguish the ppp tty when we are on demand mode, fixes demand mode
- ansi prototypes
2005-12-31 08:36:01 +00:00
tsutsui
3b1ef5e593
Add ews4800mips support.
2005-12-29 15:32:20 +00:00
martti
ecde67984b
Define INET6 only if ${USE_INET6} != "no"
2005-12-28 11:58:23 +00:00
martti
e2030cd2f7
Define INET and INET6 or things break when linking in fil.o (hi christos!)
2005-12-28 11:54:45 +00:00
elad
0ba17c4726
/dev/i4b -> /dev/isdn. From ulfdoz.
2005-12-26 19:11:17 +00:00
jmmv
e7ab8d7413
Installing the primary bootstrap requires two arguments, so ensure they are
...
present. Otherwise, an assertion is triggered (and core is dumped) in the
MD setboot code (just try 'installboot /dev/fd0a' on, e.g., i386).
2005-12-26 13:30:25 +00:00
perry
d030f331fb
__inline__ -> inline
...
__const__ -> const
2005-12-24 21:35:57 +00:00
perry
ae6ae2c362
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
2005-12-24 20:56:41 +00:00
christos
ed53f670c4
remove programs that have been deprecated.
2005-12-22 00:27:23 +00:00
christos
bd58506612
Resolve conflicts
2005-12-22 00:19:00 +00:00
wiz
086e1cafc6
Comment out paragraphs/half sentences referring to wlan(4)
...
and devd(8), which we do not have.
2005-12-12 22:23:22 +00:00
wiz
fe8b349524
Add xref to chflags(1). From Andre Luiz de Oliveira in PR 32265.
2005-12-09 20:27:02 +00:00
dillo
4793781929
(pkg_do) When marking already installed package as manually installed,
...
only print message if we succeeded.
Noted by wiz.
2005-12-08 19:26:28 +00:00
christos
d945bb2f77
missed one unsigned long long cast.
2005-12-07 13:59:12 +00:00
skrll
7044aacdd9
Don't reference stuff we don't have.
2005-12-07 12:20:49 +00:00
christos
c4e3ba2371
fix the LP64 issue for real.
2005-12-06 22:48:05 +00:00
abs
7b32e40a09
fgetc() should use an int not a char. The code style here is... unusual.
2005-12-06 21:05:36 +00:00
christos
616516830f
Fix __LP64__ issues and time_t abuse.
2005-12-06 16:32:49 +00:00
skrll
a0ab422547
Descend into lmcconfig.
2005-12-06 11:55:19 +00:00
christos
db4546dd95
New lmcconfig program from David Boggs. This program probably has the most
...
options than any other in the tree.
2005-12-06 03:12:35 +00:00
ben
d221099506
Specify the full path to tar when unpacking a package.
...
Modify pfcexec so the new process file name can be different from argv[0].
This fix is from Peter Postma, and it addresses PR#32228
2005-12-06 01:07:30 +00:00
christos
11f5327084
Don't log an error if a delete exports request is not supported. Also fix
...
the error message to print the reason delete exports failed.
2005-12-04 18:01:53 +00:00
wiz
84b1788811
Improve diagnostics section. Inspired by PR 32217 from Jeff Ito.
2005-12-03 11:24:02 +00:00
hubertf
e968750664
Only warn about running as non-root when -v is given
...
(or when running in non-unprivilegedmode, but how to detect?)
2005-12-03 01:08:38 +00:00
yamt
ebd9a381a8
constify.
2005-12-02 11:33:39 +00:00
wiz
3d67954e00
Fix typo reported by adam@.
2005-11-30 18:31:45 +00:00
dyoung
5138e74947
Fix a bug in cd9660_sort_nodes, which tried to insert `next' before
...
`node' on a tail-queue, when `node' wasn't on the tail-queue.
Sometimes this led to a segfault. Insert before `cn', since that
is the intention. Closes PR 32194. Thanks, Jeff Rizzo, for reporting
this bug.
2005-11-30 00:26:11 +00:00
christos
04723c3ffc
- WARNS = 4
...
- factor out commonly used code.
- constify
- use warn/warnx instead of printf
2005-11-28 03:26:06 +00:00
ben
ab821d396a
Correct PAX_CMD to be pax.
2005-11-28 01:49:39 +00:00
bouyer
3cce18ce83
We can't call db->put() with key or data pointing back to db(3)'s memory
...
space, or the database will be corrupted (noticed when the database is
updated in reset_host()). Change change_host() to copy hostname and HostInfo
to local storage before calling db->put().
Change notify_one() to use change_host() instead of calling db->put()
directly.
2005-11-27 16:03:20 +00:00
jdolecek
a53e9b6a94
the mktemp() use here is not OK, adjust comment
2005-11-27 12:52:30 +00:00
christos
65710e59db
adjust to the new openssl
2005-11-26 02:32:32 +00:00
agc
40a712f2d4
Be pragmatic - move user(8) to a 3-clause BSD licence.
2005-11-25 08:00:18 +00:00
macallan
631f2d878c
build the apm utility on sparc since we already build apmd
2005-11-24 15:47:09 +00:00
ben
81789679db
Conditionally include header files, and include nbcompat.h
...
Addresses PR#32149
2005-11-23 14:58:16 +00:00
tron
173505f438
Remove unused variable "argc" in function apply_perms().
2005-11-23 12:01:30 +00:00
ben
ed4b2f6172
Reduce the use of the system() function in pkg_install to avoid quoting
...
problems. Instead, use exec*() functions.
Replace PUSHOUT() macro and string buffers with a function that
operates on data structures.
If it is necessary to copy files into place from staging area, then use
pax to copy them.
Add functions in pexec.c to create a pipe for sending data to a child
process. Replace pipe code in create/perform.c with these functions.
Use these functions instead of command-line arguments when copying files
into place from staging area.
Three system() references remain: @exec, @unexec, and vsystem().
2005-11-23 04:59:14 +00:00
lukem
547b2d58b6
Add checks for _rwhod group & user.
...
Noted by Patrick Welche on current-users.
2005-11-22 22:10:52 +00:00
dyoung
f8251d6325
Bug fix: when we ask the kernel to count the ieee80211_nodes, let
...
it count as many as INT_MAX of them, instead of just 1.
New feature: display node-table membership, 'sta' or 'scan'.
2005-11-20 09:41:39 +00:00
christos
97babf6224
add the dnssec and namedb check tools
2005-11-19 02:09:27 +00:00
yamt
6458fcab9f
make -noresvmnt in DEFSET work.
2005-11-18 13:19:48 +00:00
christos
27fe712f67
The latest fts fix that removes double-slashes from paths exposed a bug
...
in the code. Don't assume that the extra slash is going to be there.
2005-11-18 05:11:30 +00:00