Index: /trunk/Nebulous/nebclient/src/nebclient.c
===================================================================
--- /trunk/Nebulous/nebclient/src/nebclient.c	(revision 13199)
+++ /trunk/Nebulous/nebclient/src/nebclient.c	(revision 13200)
@@ -4,5 +4,5 @@
  * Copyright (C) 2005  Joshua Hoblitt
  *
- * $Id: nebclient.c,v 1.44 2007-05-01 03:06:36 jhoblitt Exp $
+ * $Id: nebclient.c,v 1.45 2007-05-03 21:26:55 jhoblitt Exp $
  */
 
@@ -639,5 +639,5 @@
     resultArray    = response.result->__ptr;
 
-    if (resultElements != 6) {
+    if (resultElements != 7) {
         nebSetErr(server, "server didn't return the proper number of stat elements");
         return NULL;
@@ -650,4 +650,5 @@
     nullstrncpy(stat->epoch, resultArray[4], 256);
     nullstrncpy(stat->mtime, resultArray[5], 256);
+    stat->instances = atoi(resultArray[6]);
 
     return stat;
Index: /trunk/Nebulous/nebclient/src/nebclient.h
===================================================================
--- /trunk/Nebulous/nebclient/src/nebclient.h	(revision 13199)
+++ /trunk/Nebulous/nebclient/src/nebclient.h	(revision 13200)
@@ -4,5 +4,5 @@
  * Copyright (C) 2005  Joshua Hoblitt
  *
- * $Id: nebclient.h,v 1.31 2007-05-01 03:06:36 jhoblitt Exp $
+ * $Id: nebclient.h,v 1.32 2007-05-03 21:26:55 jhoblitt Exp $
  */
 
@@ -41,4 +41,5 @@
     char            epoch[256];         ///< creation time stamp
     char            mtime[256];         ///< modification time stamp
+    int             instances;          ///< number of instances
 } nebObjectStat;
 
