vc_get_version(): fixed typo to avoid recursive call
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Wed, 3 Dec 2003 00:08:21 +0000 (00:08 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Wed, 3 Dec 2003 00:08:21 +0000 (00:08 +0000)
git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/branches/SYSCALL_SWITCH@464 94cd875c-1c1d-0410-91d2-eb244daf1a30

util-vserver/lib/getversion.c

index 94e4168..bbdb513 100644 (file)
@@ -26,5 +26,5 @@
 int
 vc_get_version(int cat)
 {
-  return vc_get_version(cat);
+  return vc_get_version_internal(cat);
 }