Index: /trunk/Nebulous/nebclient/src/test.c
===================================================================
--- /trunk/Nebulous/nebclient/src/test.c	(revision 3050)
+++ /trunk/Nebulous/nebclient/src/test.c	(revision 3050)
@@ -0,0 +1,29 @@
+#include <stdio.h>
+#include <unistd.h>
+#include "idataclient.h"
+
+main (int argc, char **argv) {
+    idataServer     server;
+    char            *URI;
+    int             fh;
+
+    idataServerInit(&server);
+
+    fh = idataCreate(&server, argv[1], 0, NULL, NULL, &URI);
+
+    if (fh > 0) {
+        printf( "uri is %s\n", URI );
+
+        idataFree(URI);
+
+        if(close(fh) != 0){
+            perror("close");
+        }
+    } else if (fh == 0) {
+        printf( "local error\n" );
+    } else {
+        printf( "server error: %s\n", idataServerErr(&server) );
+    }
+
+    idataServerCleanup(&server);
+}
Index: unk/Nebulous/nebclient/test.c
===================================================================
--- /trunk/Nebulous/nebclient/test.c	(revision 3049)
+++ 	(revision )
@@ -1,29 +1,0 @@
-#include <stdio.h>
-#include <unistd.h>
-#include "idataclient.h"
-
-main (int argc, char **argv) {
-    idataServer     server;
-    char            *URI;
-    int             fh;
-
-    idataServerInit(&server);
-
-    fh = idataCreate(&server, argv[1], 0, NULL, NULL, &URI);
-
-    if (fh > 0) {
-        printf( "uri is %s\n", URI );
-
-        idataFree(URI);
-
-        if(close(fh) != 0){
-            perror("close");
-        }
-    } else if (fh == 0) {
-        printf( "local error\n" );
-    } else {
-        printf( "server error: %s\n", idataServerErr(&server) );
-    }
-
-    idataServerCleanup(&server);
-}
