Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


v3_stream argument number bugfix
Maciek Swiech [Fri, 17 Jan 2014 22:20:35 +0000 (16:20 -0600)]
linux_usr/v3_stream.c

index 69afdd0..f3157d7 100644 (file)
@@ -184,7 +184,7 @@ int main(int argc, char* argv[])
   char stream[STREAM_NAME_LEN];
   int argstart;
   
-  if (argc < 2) {
+  if (argc < 3) {
     usage(argv[0]);
     exit(0);
   }
@@ -192,7 +192,7 @@ int main(int argc, char* argv[])
   if (!strcasecmp(argv[1],"-i")) { 
     interactive=1;
     argstart=2;
-    if (argc < 3) {
+    if (argc < 4) {
         usage(argv[0]);
         exit(0);
     }