summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Indentation fixesbrueffer2006-04-191-9/+9
|
* o Close an output file -o flag opened before execvp(3) in a child.maxim2006-04-161-0/+2
| | | | | | PR: bin/89666 Submitted by: Arne H Juul MFC after: 1 month
* Fix indentation for "Ostersonntag".brueffer2006-04-161-1/+1
| | | | Obtained from: OpenBSD
* Add missing library dependencies.ru2006-04-131-1/+1
|
* Fix Mother's/Father's day in most case.flz2006-04-132-3/+4
| | | | | | | PR: misc/79415 Submitted by: thierry Approved by: cperciva (mentor) MFC after: 1 week
* libc_r is no longer provided, and on alpha and sparc64, libthrru2006-04-121-1/+1
| | | | | is (sym)linked to libpthread. Account for this change and check for MK_LIBTHR instead of MK_LIBC_R where appropriate.
* Allow to specify size in terabytes by using T or t suffix.pjd2006-04-092-5/+10
| | | | | | | | | | | | This speeds up my testing a bit. Because truncate(1) doesn't allocate blocks on file system before they are used, it is very useful to emulate huge file systems: # truncate -s 16T fs.img # mdconfig -a -f fs.img # newfs /dev/mdX (-t swap can be used as well)
* Update comment about var modifiers (add 'N' and 'O' descriptions).fjoe2006-04-081-2/+5
|
* Add :u var modifier (remove adjacent duplicate words like uniq(1).fjoe2006-04-082-0/+43
| | | | | Reviewed by: harti Obtained from: NetBSD (mostly)
* Fix options broken when the birthtime related primaries were added.ceri2006-04-051-11/+11
| | | | | | | | | Note to self: if a comment says a list must be lexically sorted, sort the list lexically. Submitted by: Pawel Worach Approved by: jhb MFC after: 2 weeks
* Add my birthday.alepulver2006-04-041-0/+1
| | | | Approved by: garga (mentor)
* - Add my birthdayjmelo2006-04-041-0/+1
| | | | Approved by: mnag (mentor)
* Note that all of the birthtime related primaries are non-standard.ceri2006-04-041-5/+5
|
* Bump .Dd for the birthtime options.ceri2006-04-031-1/+1
|
* Add -Btime, -Bnewer, -Bmin, -newerB[Bacmt], -newer[acmt]B options toceri2006-04-034-4/+59
| | | | | | | | | work with the st_birthtime field of struct stat. 'B' has been chosen to match the format specifier from stat(1). Approved by: jhb MFC after: 2 weeks
* If you see a broken symlink, don't try to follow it,kientzle2006-04-022-4/+7
| | | | | | | | just archive it as a symlink, even if -h was specified. Thanks to: Jin Guojun PR: bin/95175 MFC After: 1 week
* Don't call audit_logout() if pwd is NULL, as audit_logout() attempts tocognet2006-03-281-1/+4
| | | | | | | | | | dereference it. This will happen if we ^D at the Login: prompt without having provided a valid login before. Set pwd to NULL on bad login attempts to prevent audit_logout() from being called for a user which didn't actually log on. Reported by: Jerome Magnin jethro at docisland dot org
* Make gcore(1) 64 bit safe. It was trying to parse the /proc/*/map filepeter2006-03-251-3/+3
| | | | | | | | | using sscanf and truncating the start/end entries by writing them with a 32 bit int descriptor (%x). The upper bytes of the 64 bit vm_offset_t variables (for little endian machines) were uninitialized. For big endian machines, things would have been worse because it was storing the 32 bit value in the upper half of the 64 bit variable. I've changed it to use %lx and long types. That should work on all our platforms.
* Extended attribute support on write for Linux; FreeBSD hooks arekientzle2006-03-219-23/+140
| | | | | | | | | | forthcoming. This commit also has a number of style(9) fixes and minor corrections so the code works better with the build system being used for non-FreeBSD builds. Many thanks to: Jaakko Heinonen, who proposed a mechanism for extended attribute support and implemented both the machine-independent portion and the Linux-specific portion.
* Unbreak WITHOUT_LIBPHREAD/WITHOUT_LIBC_R option support, dependingru2006-03-211-0/+6
| | | | on platform.
* Extend coverage of the MK_IPX build option to the following:ru2006-03-201-0/+4
| | | | | | | | | | | | | | | | | | | | | - <netipx> headers [1] - IPX library (libipx) - IPX support in ifconfig(8) - IPXrouted(8) - new MK_NCP option New MK_NCP build option controls: - <netncp> and <fs/nwfs> headers - NCP library (libncp) - ncplist(1) and ncplogin(1) - mount_nwfs(8) - ncp and nwfs kernel modules User knobs: WITHOUT_IPX, WITHOUT_IPX_SUPPORT, WITHOUT_NCP. [1] <netsmb/netbios.h> unconditionally uses <netipx> headers so they are still installed. This needs to be dealt with.
* Convert NO_PROFILE and NO_LIB32 to new style.ru2006-03-181-1/+3
|
* add an entry for ozfod..jmg2006-03-181-0/+1
| | | | MFC after: 3 days
* fix spelling of ozfod... I've been wondering why we'd need to fill a pagejmg2006-03-181-1/+1
| | | | | | | w/ non-zero data, and it turns out we don't... This is really optimized zero filled on demand, or pages that were already zero'd for us... MFC after: 3 days
* A few minor corrections to the mkuzip.8 man page.sobomax2006-03-171-25/+24
| | | | | PR: 92576 Submitted by: Stefan Bethke
* Reimplementation of world/kernel build options. For details, see:ru2006-03-179-26/+46
| | | | | | | | http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html The src.conf(5) manpage is to follow in a few days. Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
* Cross-reference basename(3) and dirname(3).jkoshy2006-03-161-1/+3
|
* When opening a trace file, open O_NONBLOCK so that ktrace doesn't stallrwatson2006-03-141-1/+4
| | | | | | | | | if the target is a fifo. After opening a trace file, check that it is a regular file, and if not, return an error. MFC after: 3 days Reported by: kris PR: 94278
* Update make glue for csup-snap-20060313.mux2006-03-141-0/+1
|
* Remove non-FreeBSD source from FreeBSD repository.kientzle2006-03-121-20/+0
|
* Remove including of libc sources. All the required functionsdeischen2006-03-101-8/+2
| | | | | are exported by libc with prototypes in our standard headers. I guess at one time this was necessary, but not any longer.
* Remove configure.ac.in and the 'distfile' target fromkientzle2006-03-084-164/+6
| | | | | the FreeBSD makefile. This is a step towards cleaning out the non-FreeBSD bits from the FreeBSD source tree.
* Add a check for Linux' "libacl" library and headers.kientzle2006-03-071-0/+4
|
* Change the output of --version to match GNU "gnits" standards.kientzle2006-03-071-5/+2
| | | | | | | | (I'm not using GPL, but I still think there are good ideas in the GNU projects. ;-) Among other things, this should make it easier for clients of bsdtar to recognize it automatically: bsdtar --version | grep bsdtar
* Fix a format mismatch (%d integer format, platform-dependentkientzle2006-03-071-1/+1
| | | | argument type).
* Add an override (DONTSTRIP) so that one can easily install debugableobrien2006-03-062-0/+14
| | | | | binaries when one cannot easily edit a package's Makefiles and/or configure scripts.
* Managing login.access is no longer a responsibility of login(1).yar2006-03-061-10/+6
| | | | | | Therefore give a xref, not details. MFC after: 3 days
* Remove the last reference to LOGIN_ACCESS from login(1).yar2006-03-061-2/+3
| | | | MFC after: 3 days
* login.access.5 and login_access.c are no longer usedyar2006-03-062-296/+0
| | | | | | | | | | | | | | | in usr.bin/login because the login.access feature has moved to PAM completely. Their counterparts in lib/libpam/modules/pam_login_access have been found to be in sync with, and even in better shape than, login.access.5 and login_access.c here. Therefore cvs rm login.access.5 and login_access.c from usr.bin/login so that nobody will waste their time on fixing or developing the files here. MFC after: 3 days
* login(1) no longer handles /etc/login.access by itself,yar2006-03-061-1/+0
| | | | | | it's PAM's job. MFC after: 3 days
* Since the whole login.access feature has moved to PAM,yar2006-03-061-1/+1
| | | | | | | login.access.5 will be installed from the respective PAM module's src directory. MFC after: 3 days
* Reduce number of spaces for full name by four, and reduce paddingrwatson2006-03-041-5/+5
| | | | | | | | | | | | | | | | | | | | | after tty entry by one space in order to provide extra spaces for the tty entry. As a result, full pts names are now visible (up to 999 pts's anyway): Before: Login Name TTY Idle Login Time Office Phone robert Robert Watson *v0 3:55 Fri 02:54 robert Robert Watson p0 19 Sat 11:01 robert Robert Watson pts Sat 14:55 After: Login Name TTY Idle Login Time Office Phone robert Robert Watson *v0 5:08 Fri 02:54 robert Robert Watson p0 8 Sat 11:01 robert Robert Watson pts/5 Sat 14:55 MFC after: 1 week
* Don't build csup if NO_CRYPT or NO_OPENSSL is defined, since we dependmux2006-03-031-1/+2
| | | | | | on those. Reported by: marius
* Connect csup the build!mux2006-03-031-0/+1
|
* - Don't put the .h in SRCS.mux2006-03-031-25/+25
| | | | | | | - Use LDADD += -lpthread and DPADD += ${LIBPTHREAD} instead of -pthread. - s/-I${.CURDIR}/-I./ to fix make obj. Submitted by: ru
* Add make glue for building csup. Not yet connected to the build.mux2006-03-031-0/+35
|
* Fix the way in which median is calculated. If the data source has evenwkoszek2006-02-231-7/+18
| | | | | | | number of data points, value should be calculated by adding two middle elements and dividing them by 2. Approved by: cognet (mentor)
* Add myself as a new src commiter:wkoszek2006-02-221-0/+1
| | | | | | | + extend calendar with my birth date Approved by: cognet (mentor) Reviewed by: cognet (mentor)
* If opendir(".") fails after descending into a subdirectory viapeadar2006-02-221-1/+2
| | | | | | | | | | chdir(), be sure to undo the effects of the chdir before continuing. Without this, after hitting a directory with mode 0111 (for example), tar will get lost, and won't add any yet unvisted files to your archive. (Or possibly add the wrong files, I suppose...) Reviewed By: kientzle@
* Add option -w to specify graph width.mdodd2006-02-221-3/+24
| | | | | | Use COLUMNS, terminal width for default graph width. Reviewed by: rwatson
OpenPOWER on IntegriCloud