diff options
author | jkh <jkh@FreeBSD.org> | 1998-09-24 13:25:43 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-09-24 13:25:43 +0000 |
commit | 13107fee742130913f3fa0ba391c2fae9e390bff (patch) | |
tree | 6f67c97fc160b6b1b8a97095a1219116b071acd0 /sys/compat/linux/linux_misc.c | |
parent | 40b0da60d7491ad95c5c380293e7a5b6ad2e3b43 (diff) | |
download | FreeBSD-src-13107fee742130913f3fa0ba391c2fae9e390bff.zip FreeBSD-src-13107fee742130913f3fa0ba391c2fae9e390bff.tar.gz |
MF22: revert time bogon.
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
-rw-r--r-- | sys/compat/linux/linux_misc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 4b68f0d..620489e 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -25,7 +25,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: linux_misc.c,v 1.42 1998/08/16 01:21:50 bde Exp $ + * $Id: linux_misc.c,v 1.43 1998/09/23 14:50:26 jkh Exp $ */ #include <sys/param.h> @@ -682,7 +682,6 @@ linux_time(struct proc *p, struct linux_time_args *args) printf("Linux-emul(%d): time(*)\n", p->p_pid); #endif microtime(&tv); - timevalsub(&tv, &boottime); tm = tv.tv_sec; if (args->tm && (error = copyout(&tm, args->tm, sizeof(linux_time_t)))) return error; |