Index: /trunk/Ohana/src/opihi/cmd.data/book.c
===================================================================
--- /trunk/Ohana/src/opihi/cmd.data/book.c	(revision 16433)
+++ /trunk/Ohana/src/opihi/cmd.data/book.c	(revision 16434)
@@ -16,17 +16,17 @@
 
 static Command book_commands[] = {
-  {"list",     book_list,     "list books"},
-  {"init",     book_init,     "initialize a book"},
-  {"create",   book_create,   "create a book"},
-  {"delete",   book_delete,   "delete a book"},
-  {"getbook",  book_getbook,  "get book name by location"},
-  {"listbook", book_listbook, "list pages in a book"},
-  {"npages",   book_npages,   "return number of pages in a book"},
-  {"newpage",  book_newpage,  "create a new page in a book"},
-  {"getpage",  book_getpage,  "get page name by location"},
-  {"delpage",  book_delpage,  "delete a page in a book"},
-  {"listpage", book_listpage, "list a page in a book"},
-  {"setword",  book_setword,  "set the value of a word in a page"},
-  {"getword",  book_getword,  "set the value of a word from a page"},
+  {1, "list",     book_list,     "list books"},
+  {1, "init",     book_init,     "initialize a book"},
+  {1, "create",   book_create,   "create a book"},
+  {1, "delete",   book_delete,   "delete a book"},
+  {1, "getbook",  book_getbook,  "get book name by location"},
+  {1, "listbook", book_listbook, "list pages in a book"},
+  {1, "npages",   book_npages,   "return number of pages in a book"},
+  {1, "newpage",  book_newpage,  "create a new page in a book"},
+  {1, "getpage",  book_getpage,  "get page name by location"},
+  {1, "delpage",  book_delpage,  "delete a page in a book"},
+  {1, "listpage", book_listpage, "list a page in a book"},
+  {1, "setword",  book_setword,  "set the value of a word in a page"},
+  {1, "getword",  book_getword,  "set the value of a word from a page"},
 };
 
Index: /trunk/Ohana/src/opihi/include/shell.h
===================================================================
--- /trunk/Ohana/src/opihi/include/shell.h	(revision 16433)
+++ /trunk/Ohana/src/opihi/include/shell.h	(revision 16434)
@@ -22,4 +22,5 @@
 /*** typedef structs used by shell functions ***/
 typedef struct {			/* basic opihi command structure */
+  char      real;
   char     *name;
   CommandF *func;    
