Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[vdr] Re: Problems with exit-states (VDR-1.2.2)



Am Sam, 2003-08-30 um 16.03 schrieb Klaus Schmidinger:

> 
> --- vdr.c       2003/08/24 11:18:04     1.166
> +++ vdr.c       2003/08/30 13:58:47
> @@ -81,6 +81,10 @@
>  {
>    // Save terminal settings:
> 
> +  fprintf(stderr, "vdr: argc = %d\n", argc);
> +  for (int i = 0; i < argc; i++)
> +      fprintf(stderr, "  '%s'\n", argv[i]);
> +
>    struct termios savedTm;
>    bool HasStdin = (tcgetpgrp(STDIN_FILENO) == getpid() || getppid() != (pid_t)1) && tcgetattr(STDIN_FILENO, &savedTm) == 0;
> 
> --- plugin.c    2003/05/09 15:01:26     1.9
> +++ plugin.c    2003/08/30 13:57:48
> @@ -212,6 +212,9 @@
>          if (argc)
>             plugin->SetName(argv[0]);
>          optind = 0; // to reset the getopt() data
> +        fprintf(stderr, "plugin: '%s'  argc = %d\n", plugin->Name(), argc);
> +        for (int i = 0; i < argc; i++)
> +            fprintf(stderr, "  '%s'\n", argv[i]);
>          return !argc || plugin->ProcessArgs(argc, argv);
>          }
>       }

After removing the VDR-1.2.2 RPMs and installing 1.2.4 by source it
seems to work now. Have there been any changes between 1.2.2 and 1.2.4?

With the patch it looks fine, but also seems to work without the patch.
I'll do some further testing, now.

-- 
Rene Bartsch

Facsimile/Phone: +49 7 00/72 27 87 24
Mail:  rene@bartschnet.de



-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe vdr" as subject.



Home | Main Index | Thread Index