Index: trunk/Nebulous/nebclient/src/nebclient.c
===================================================================
--- trunk/Nebulous/nebclient/src/nebclient.c	(revision 12963)
+++ trunk/Nebulous/nebclient/src/nebclient.c	(revision 13096)
@@ -4,5 +4,5 @@
  * Copyright (C) 2005  Joshua Hoblitt
  *
- * $Id: nebclient.c,v 1.43 2007-04-23 23:10:07 jhoblitt Exp $
+ * $Id: nebclient.c,v 1.44 2007-05-01 03:06:36 jhoblitt Exp $
  */
 
@@ -83,5 +83,5 @@
 }
 
-char *nebCreate(nebServer *server, const char *key, unsigned int class, const char *volume, const char *comment, char **URI)
+char *nebCreate(nebServer *server, const char *key, const char *volume, char **URI)
 {
     struct ns1__create_USCOREobjectResponse response;
@@ -97,6 +97,5 @@
 
     if (soap_call_ns1__create_USCOREobject(server->soap, server->endpoint, NULL,
-            (char *)key, class, (char *)volume, (char *)comment, 
-            (char **)&response) != SOAP_OK) {
+            (char *)key, (char *)volume, (char **)&response) != SOAP_OK) {
         nebSetServerErr(server);
 
@@ -123,5 +122,5 @@
 }
 
-int nebOpenCreate(nebServer *server, const char *key, unsigned int class, const char *volume, const char *comment, char **URI)
+int nebOpenCreate(nebServer *server, const char *key, const char *volume, char **URI)
 {
     char            *filename;
@@ -136,5 +135,5 @@
     }
 
-    filename = nebCreate(server, key, class, volume, comment, URI);
+    filename = nebCreate(server, key, volume, URI);
 
     file = open(filename, O_RDWR|O_TRUNC, 0660);
@@ -522,5 +521,5 @@
     }
 
-    destFH = nebOpenCreate(server, newKey, 0, NULL, NULL, NULL);
+    destFH = nebOpenCreate(server, newKey, NULL, NULL);
     if (destFH < 0) {
         // propigate nebCreate() error
@@ -640,5 +639,5 @@
     resultArray    = response.result->__ptr;
 
-    if (resultElements != 8) {
+    if (resultElements != 6) {
         nebSetErr(server, "server didn't return the proper number of stat elements");
         return NULL;
@@ -647,10 +646,8 @@
     nullstrncpy(stat->so_id, resultArray[0], 256);
     nullstrncpy(stat->ext_id, resultArray[1], 256);
-    nullstrncpy(stat->class_id, resultArray[2], 256);
-    nullstrncpy(stat->comment, resultArray[3], 256);
-    nullstrncpy(stat->read_lock, resultArray[4], 256);
-    nullstrncpy(stat->write_lock, resultArray[5], 256);
-    nullstrncpy(stat->epoch, resultArray[6], 256);
-    nullstrncpy(stat->mtime, resultArray[7], 256);
+    nullstrncpy(stat->read_lock, resultArray[2], 256);
+    nullstrncpy(stat->write_lock, resultArray[3], 256);
+    nullstrncpy(stat->epoch, resultArray[4], 256);
+    nullstrncpy(stat->mtime, resultArray[5], 256);
 
     return stat;
