diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-24 09:34:01 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-24 09:34:01 +0000 |
commit | dc7ba390ce47ec3179fbddbf0b119c7fd730cb4a (patch) | |
tree | 5dc46dfe2f38221145756cbeec60bb3dc2dc875b /src/xine-engine/xine_interface.c | |
parent | cfb0c3ddeea748a0ec45b216e7142ebe39b180ae (diff) | |
download | xine-lib-dc7ba390ce47ec3179fbddbf0b119c7fd730cb4a.tar.gz xine-lib-dc7ba390ce47ec3179fbddbf0b119c7fd730cb4a.tar.bz2 |
* notify the user that the save feature is disabled by default
* security warning when the user tries to set the save_dir to a dangerous location
CVS patchset: 5586
CVS date: 2003/10/24 09:34:01
Diffstat (limited to 'src/xine-engine/xine_interface.c')
-rw-r--r-- | src/xine-engine/xine_interface.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xine-engine/xine_interface.c b/src/xine-engine/xine_interface.c index db60e60e7..1aab5feea 100644 --- a/src/xine-engine/xine_interface.c +++ b/src/xine-engine/xine_interface.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: xine_interface.c,v 1.60 2003/10/21 22:10:34 f1rmb Exp $ + * $Id: xine_interface.c,v 1.61 2003/10/24 09:34:01 mroi Exp $ * * convenience/abstraction layer, functions to implement * libxine's public interface @@ -772,7 +772,7 @@ int xine_message(xine_stream_t *stream, int type, ...) { static char *std_explanation[] = { "", - "Warning", + "Warning:", "Unknown host:", "Unknown device:", "Network unreachable", @@ -781,6 +781,7 @@ int xine_message(xine_stream_t *stream, int type, ...) { "Read error from:", "Error loading library:", "Encrypted media stream detected", + "Security message:" }; if( type >= 0 && type < sizeof(std_explanation)/ |