From 78582a5a56d05f6e6798f60c77be8d304fc20915 Mon Sep 17 00:00:00 2001 From: abs Date: Mon, 10 Jan 2000 19:33:18 +0000 Subject: [PATCH] fix bug that caused first load to fail - from jkunz@unixag-kl.fh-kl.de --- mopd/process.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mopd/process.c b/mopd/process.c index 16cd6ce..5d95760 100644 --- a/mopd/process.c +++ b/mopd/process.c @@ -1,4 +1,4 @@ -/* $NetBSD: process.c,v 1.5 1997/10/16 23:25:19 lukem Exp $ */ +/* $NetBSD: process.c,v 1.6 2000/01/10 19:33:18 abs Exp $ */ /* * Copyright (c) 1993-95 Mats O Jansson. All rights reserved. @@ -31,7 +31,7 @@ #include #ifndef lint -__RCSID("$NetBSD: process.c,v 1.5 1997/10/16 23:25:19 lukem Exp $"); +__RCSID("$NetBSD: process.c,v 1.6 2000/01/10 19:33:18 abs Exp $"); #endif #include "os.h" @@ -246,8 +246,8 @@ mopStartLoad(dst, src, dl_rpr, trans) if (dllist[i].status == DL_STATUS_FREE) { if (slot == -1) { slot = i; - memmove((char *)dst, - (char *)dllist[i].eaddr, 6); + memmove((char *)dllist[i].eaddr, + (char *)dst, 6); } } }