diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2010-09-14 10:04:37 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2010-09-14 10:04:37 +0000 |
commit | 0e88de2941a0af0fe66ebbb5171ae927a44fcc4d (patch) | |
tree | 8c5c64c32ac8a1c620d6d317dbb3c5bdbabcf94e /usr.sbin | |
parent | eeae1fd99b999e95874fd4f582d88d7894a60270 (diff) |
document atime/mtime
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_add/pod/OpenBSD::Ustar.pod | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/pod/OpenBSD::Ustar.pod b/usr.sbin/pkg_add/pod/OpenBSD::Ustar.pod index a17f603472d..75967ea6ce5 100644 --- a/usr.sbin/pkg_add/pod/OpenBSD::Ustar.pod +++ b/usr.sbin/pkg_add/pod/OpenBSD::Ustar.pod @@ -1,4 +1,4 @@ -$OpenBSD: OpenBSD::Ustar.pod,v 1.15 2010/07/28 12:19:54 espie Exp $ +$OpenBSD: OpenBSD::Ustar.pod,v 1.16 2010/09/14 10:04:36 espie Exp $ =head1 NAME @@ -139,6 +139,10 @@ filename C<chmod(2)> mode +=item C<$o-E<gt>{atime}> + +C<utime(2)> access time + =item C<$o-E<gt>{mtime}> C<utime(2)> modification time @@ -165,9 +169,10 @@ name of the source link, if applicable =back -The fields C<name>, C<mode>, C<mtime>, C<uid>, C<gid> and C<linkname> +The fields C<name>, C<mode>, C<atime>, C<mtime>, C<uid>, C<gid> and C<linkname> can be altered before calling C<$o-E<gt>create> or C<$o-E<gt>write>, and will properly influence the resulting file. +C<atime> and C<mtime> can be undef to set those to the current time. The relationship between C<uid> and C<uname>, and C<gid> and C<gname> conforms to the USTAR format usual behavior. |