From 863ee4199c2cdc0c4c71deff86857e9f2bb90ebe Mon Sep 17 00:00:00 2001 From: kuriyama Date: Fri, 1 Nov 2002 02:05:05 +0000 Subject: debugMsg() should end with "\n". --- usr.sbin/sysinstall/media.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.sbin/sysinstall/media.c') diff --git a/usr.sbin/sysinstall/media.c b/usr.sbin/sysinstall/media.c index 26e5f46..681a584 100644 --- a/usr.sbin/sysinstall/media.c +++ b/usr.sbin/sysinstall/media.c @@ -490,8 +490,8 @@ int mediaSetHTTP(dialogMenuItem *self) variable_set2(VAR_HTTP_HOST, hostname, 0); variable_set2(VAR_HTTP_PORT, itoa(HttpPort), 0); if (isDebug()) { - msgDebug("VAR_FTP_PATH : %s",variable_get(VAR_FTP_PATH)); - msgDebug("VAR_HTTP_HOST, _PORT: %s:%s",variable_get(VAR_HTTP_HOST), + msgDebug("VAR_FTP_PATH : %s\n",variable_get(VAR_FTP_PATH)); + msgDebug("VAR_HTTP_HOST, _PORT: %s:%s\n",variable_get(VAR_HTTP_HOST), variable_get(VAR_HTTP_PORT)); } @@ -578,7 +578,7 @@ mediaSetNFS(dialogMenuItem *self) } else { if (isDebug()) - msgDebug("Found DNS entry for %s successfully..", hostname); + msgDebug("Found DNS entry for %s successfully..\n", hostname); } } variable_set2(VAR_NFS_HOST, hostname, 0); -- cgit v1.1