You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by fu...@apache.org on 2009/10/05 20:39:22 UTC

svn commit: r821954 - in /apr/apr/branches/1.4.x/test: nw_misc.c nwgnuaprtest nwgnuglobalmutexchild nwgnumod_test nwgnuproc_child nwgnureadchild nwgnusockchild nwgnutestatmc nwgnutryread

Author: fuankg
Date: Mon Oct  5 18:39:21 2009
New Revision: 821954

URL: http://svn.apache.org/viewvc?rev=821954&view=rev
Log:
fixed nw_misc.c so that it doesnt overwrite line 24 anymore.

Removed:
    apr/apr/branches/1.4.x/test/nwgnuaprtest
    apr/apr/branches/1.4.x/test/nwgnuglobalmutexchild
    apr/apr/branches/1.4.x/test/nwgnumod_test
    apr/apr/branches/1.4.x/test/nwgnuproc_child
    apr/apr/branches/1.4.x/test/nwgnureadchild
    apr/apr/branches/1.4.x/test/nwgnusockchild
    apr/apr/branches/1.4.x/test/nwgnutestatmc
    apr/apr/branches/1.4.x/test/nwgnutryread
Modified:
    apr/apr/branches/1.4.x/test/nw_misc.c

Modified: apr/apr/branches/1.4.x/test/nw_misc.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.4.x/test/nw_misc.c?rev=821954&r1=821953&r2=821954&view=diff
==============================================================================
--- apr/apr/branches/1.4.x/test/nw_misc.c (original)
+++ apr/apr/branches/1.4.x/test/nw_misc.c Mon Oct  5 18:39:21 2009
@@ -1,6 +1,4 @@
 #include <stdlib.h>
-#include <netware.h>
-#include <screen.h>
 /*
 #include "testutil.h"
 */
@@ -8,12 +6,7 @@
 /* function to keep the screen open if not launched from bash */
 void _NonAppStop( void )
 {
-  if (getenv("_IN_NETWARE_BASH_") == NULL) {
-    uint16_t row, col;
-
-    GetScreenSize(&row, &col);
-    gotorowcol(row-1, 0);
-    printf("<Press any key to close screen> ");
+    printf("\r\n<Press any key to close screen> ");
     getcharacter();
   }
 }