diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-05-02 20:00:57 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-05-02 20:00:57 +0000 |
commit | 72139310c6896460e7a38efeff10d68f4bd0b442 (patch) | |
tree | 0c32f3f591c3d7b30d008f43be1c665f0b9e34d9 | |
parent | 19d24d40a141c1fbc0430b564f2343c996d5c00e (diff) | |
download | xine-lib-72139310c6896460e7a38efeff10d68f4bd0b442.tar.gz xine-lib-72139310c6896460e7a38efeff10d68f4bd0b442.tar.bz2 |
these settings are not security critical => lower experience level
CVS patchset: 6480
CVS date: 2004/05/02 20:00:57
-rw-r--r-- | src/video_out/video_out_pgx32.c | 4 | ||||
-rw-r--r-- | src/video_out/video_out_pgx64.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/video_out/video_out_pgx32.c b/src/video_out/video_out_pgx32.c index 08fa4b69d..35b8d2e0e 100644 --- a/src/video_out/video_out_pgx32.c +++ b/src/video_out/video_out_pgx32.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_pgx32.c,v 1.7 2004/04/28 00:14:13 komadori Exp $ + * $Id: video_out_pgx32.c,v 1.8 2004/05/02 20:00:57 mroi Exp $ * * video_out_pgx32.c, Sun PGX32 output plugin for xine * @@ -756,7 +756,7 @@ static vo_driver_t *pgx32_init_driver(video_driver_class_t *class_gen, const voi devname = class->config->register_string(class->config, "video.pgx32_device", "/dev/fb", _("PGX32 device path"), _("Specifies the file name for the PGX32 device to be used."), - XINE_CONFIG_SECURITY, NULL, NULL); + 20, NULL, NULL); if ((fbfd = open(devname, O_RDWR)) < 0) { xprintf(class->xine, XINE_VERBOSITY_LOG, _("video_out_pgx32: Error: can't open framebuffer device '%s'\n"), devname); diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c index 922168aa3..7fbf4e7c8 100644 --- a/src/video_out/video_out_pgx64.c +++ b/src/video_out/video_out_pgx64.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_out_pgx64.c,v 1.61 2004/04/29 15:38:12 komadori Exp $ + * $Id: video_out_pgx64.c,v 1.62 2004/05/02 20:00:57 mroi Exp $ * * video_out_pgx64.c, Sun PGX64/PGX24 output plugin for xine * @@ -1071,7 +1071,7 @@ static vo_driver_t *pgx64_init_driver(video_driver_class_t *class_gen, const voi devname = class->config->register_string(class->config, "video.pgx64_device", "/dev/fb", _("PGX64/PGX24 device path"), _("Specifies the file name for the PGX64/PGX24 device to be used.\n"), - XINE_CONFIG_SECURITY, NULL, NULL); + 20, NULL); if ((fbfd = open(devname, O_RDWR)) < 0) { xprintf(class->xine, XINE_VERBOSITY_LOG, _("video_out_pgx64: Error: can't open framebuffer device '%s'\n"), devname); |