veego
2e54e13c3c
Add the missing . for -I
1997-10-11 15:47:55 +00:00
veego
7e3be35edc
s/$FSCK/${FSCK}/
1997-10-11 15:19:18 +00:00
mycroft
af65e81265
Make these executables world-readable.
1997-10-11 11:05:28 +00:00
mycroft
e96e918e60
Use bsd.subdir.mk as appropriate.
1997-10-11 09:34:07 +00:00
enami
e19615eae4
Sort items of section 8 in SEE ALSO list alphabetical order.
1997-10-11 03:02:36 +00:00
enami
776a465431
Sort SEE ALSO list; first by section number, then alphabetical order.
1997-10-11 02:59:26 +00:00
enami
2a6493fe69
- Use .Nm "" instead of .Nm rtquery in SYNOPSIS.
...
- Don't use captialized wort to refer command name.
- Delete period at the end of ``SEE ALSO'' list.
- Use .Xr instead of .Em to refer routed.
1997-10-11 02:55:20 +00:00
enami
4385d9fe62
- Use .Nm "" instead of .Nm ifconfig in SYNOPSIS.
...
- Delete space at the end of line.
1997-10-11 02:44:36 +00:00
enami
28f842ad16
- Use .Nm "" instead of .Nm ccdconfig in SYNOPSYS.
...
- Delete the period at the end of ``SEE ALSO'' list.
1997-10-11 02:34:02 +00:00
enami
b8a2598653
Use .Nm "" instead of .Nm fsck_msdos in SYNOPSIS.
1997-10-11 02:30:24 +00:00
enami
fc8191fee4
- Use .Nm "" instead of .Nm disklabel in SYNOPSIS.
...
- Do a trick to remove whitespace before close paren from generated output.
- Delete space at the end of line.
1997-10-11 02:28:17 +00:00
christos
e230a48b57
CFLAGS->CPPFLAGS
1997-10-10 19:47:50 +00:00
lukem
76e13a0128
all but the first .Nm in SYNOPSIS need to be spelt out. [bin/4256]
1997-10-10 16:12:45 +00:00
mikel
b6c4c4295e
link rtquery against dynamic libs; from Soren S. Jorvang in PR bin/4178
1997-10-10 07:34:09 +00:00
mikel
628b9703d0
allow overrides of LDSTATIC, from Soren S. Jorvang in PR bin/4178
1997-10-10 07:32:54 +00:00
mrg
74f573d85d
remove advertising clause from all my licenses.
1997-10-10 05:39:47 +00:00
bouyer
7052d78b8d
Ext2 metadata are always stored on disk in little-endian byte order,
...
so do byte-swapping on big-endian system. The byte-swap routines are in
fsck/bswap.c because they will also be used in fsck_ffs in future.
Tested on i386 and sparc.
1997-10-09 13:19:32 +00:00
enami
062c3f563a
Restore owner/group/mode/atime/mtime of symbolic links.
1997-10-08 22:51:27 +00:00
hubertf
d616097cd1
PR misc/4206: internal -> interval;
...
Reported by William O Ferry.
1997-10-03 00:55:28 +00:00
enami
697ba3faff
Don't declare optind, opterr and optarg.
1997-10-01 02:25:55 +00:00
enami
ae3fbb603f
Don't delcare optind.
1997-10-01 02:24:29 +00:00
enami
2481ddf882
Don't declare optind.
1997-10-01 02:22:54 +00:00
enami
0d8fa88b1f
Don't declare optind and optarg.
1997-10-01 02:21:34 +00:00
enami
21d836180a
Don't declare optind.
1997-10-01 02:18:14 +00:00
enami
9f86d6ed5e
Don't declare optind and optarg.
1997-10-01 02:15:48 +00:00
phil
fb5b34e71c
Backout prototype of opendisk.
1997-09-30 17:30:29 +00:00
phil
a8d52993f0
Backout the prototype of opendisk().
1997-09-30 17:29:40 +00:00
phil
c342d989c5
Prototype opendisk().
1997-09-30 17:09:13 +00:00
phil
6bebb4822d
Add a prototype for opendisk().
1997-09-30 16:54:31 +00:00
lukem
377bf2c827
fix typo
1997-09-29 06:20:09 +00:00
enami
7b4b674241
When calling err(3),
...
- Don't output unnecessary colon and space, and
- Include the name of system call just called.
1997-09-29 05:18:00 +00:00
lukem
216ef04613
switch to using opendisk(3) from libutil
1997-09-25 05:08:28 +00:00
lukem
8b07f7ca3d
for now, #ifdef out a couple of chunks that were added in the lite2 merge
1997-09-24 09:24:21 +00:00
jeremy
b8e30f3915
Add sun3x.
1997-09-24 07:55:24 +00:00
jeremy
f83ae6979b
Quell gcc 2.7.2 initialization warning.
1997-09-21 08:32:04 +00:00
lukem
e808c63383
unnecessary file from lite-2 merge
1997-09-21 04:08:55 +00:00
lukem
ea79507baf
reintroduce clarity changes made in rev1.14 that were lost in the lite2 merge
1997-09-21 03:51:34 +00:00
lukem
90c9455b48
remove -g from CFLAGS=
1997-09-21 03:49:53 +00:00
lukem
103e158ba5
remove some code that was obsoleted by mycroft's changes to
...
propagate() in dir.c rev 1.14.
this was accidentally re-introduced in the lite-2 merge, and could
cause filesystem corruption.
1997-09-21 03:06:47 +00:00
enami
0ac5bcaa77
Cosmetic changes:
...
- Use syslog(..., "...%m") instead of syslog(..., "...%s",
strerror(errno)).
- Don't put a simple and single statement into a block.
- Indent continuation line by four space.
- Add an empty line at the beginning of a function if it doesn't have
local variable.
- Use err() or errx() instead of fprintf(stderr, "progname: ....\n")
and exit() (there was two place left).
- Use MOUNT_PORTAL, which is defined as "portal" in sys/mount.h,
instead of using "portal" directly.
- Fold long line to fit column < 80.
1997-09-21 02:35:40 +00:00
lukem
d2f145c7a6
a quad_t is an int64_t, not a u_int64_t...
1997-09-21 00:24:55 +00:00
christos
24002425ac
Work around ggc-2.7.2 off_t initialization bug on m68k.
1997-09-20 16:28:00 +00:00
enami
8c389fd0c2
Cosmetic change;
...
- indent continuation line by four space.
- put an empty line at the beginning of function which has no local variable.
1997-09-20 09:48:35 +00:00
enami
c6e5d31119
Fix revived bug, described in PR#3285. But use a bit simple way;
...
Use loop count instead of hackery pointer play.
1997-09-20 09:43:22 +00:00
enami
2d4b680a58
Don't include <sys/cdefs.h> twice in same file.
1997-09-20 06:26:43 +00:00
lukem
af479c48b8
- don't indiscriminately include <stdlib.h> and <unistd.h> in "fsck.h"
...
- explicitly pull in <stdio.h>, <stdlib.h> and <unistd.h> in *.c as necessary
1997-09-20 06:16:23 +00:00
leo
71af424fee
Commit userland part of pr-1891.
1997-09-19 19:38:57 +00:00
christos
e398a31c08
Fix uninitialized variable warning.
1997-09-19 16:25:49 +00:00
enami
8daf159019
Don't pass return value of writelabel() to strerror(), since
...
the value is not a errno but just 0 or 1.
1997-09-18 22:20:36 +00:00
lukem
865fe3908e
Various changes from Brian Grayson <bgrayson@ece.utexas.edu> in [bin/4103]
...
* exit after providing an estimate if -S was given. the PR used -e,
but checking around indicated prior art in Solaris usin -S.
* remove superfluous 'DUMP:' prefix in two messages
* initialise blocksperfile explicitly (not necessary, but everything
else in that section gets initialised, so be consistant :)
* display the ``pretty'' name of the dumped directory, so the user
knows if it's a subset or not
1997-09-18 03:03:55 +00:00