Index: trunk/Ohana/src/opihi/lib.shell/version.c
===================================================================
--- trunk/Ohana/src/opihi/lib.shell/version.c	(revision 8653)
+++ trunk/Ohana/src/opihi/lib.shell/version.c	(revision 10842)
@@ -7,22 +7,2 @@
   return (name);
 }
-
-/* expect a line of the form "$Name: not supported by cvs2svn $", strip out contents */
-char *strip_version (char *input) {
-
-  char *p, *q;
-
-  p = strstr (input, "$Name:");
-  if (p == NULL) return (strcreate ("NONE"));
-
-  q = strcreate (input + 6);
-  p = strrchr (q, '$');
-  if (p != NULL) *p = 0;
-  stripwhite (q);
-  if (*q == 0) {
-    free (q);
-    q = strcreate ("NONE");
-  }
-
-  return (q);
-}
