--- src/main.c 2009-04-12 23:08:18.000000000 +0200 +++ main.c 2009-08-01 14:10:46.785485894 +0200 @@ -566,6 +566,7 @@ " -i, --interactive run in interactive mode\n" " -n, --no-spiceinit don't load the local or user's config file\n" " -o, --output=FILE set the outputfile\n" + " -p, --pipe run in I/O pipe mode\n" " -q, --completion activate command completion\n" " -r, --rawfile=FILE set the rawfile output\n" " -s, --server run spice as a server process\n" @@ -772,6 +773,7 @@ {"interactive", 0, 0, 'i'}, {"no-spiceinit", 0, 0, 'n'}, {"output", 1, 0, 'o'}, + {"pipe", 0, 0, 'p'}, {"completion", 0, 0, 'q'}, {"rawfile", 1, 0, 'r'}, {"server", 0, 0, 's'}, @@ -779,7 +781,7 @@ {0, 0, 0, 0} }; - c = getopt_long (argc, argv, "hvbac:ihno:qr:st:", + c = getopt_long (argc, argv, "hvbac:ihno:pqr:st:", long_options, &option_index); if (c == -1) break;