[MPlayer-cvslog] CVS: main/libvo x11_common.c,1.191,1.192
Reimar Döffinger CVS
syncmail at mplayerhq.hu
Thu Jun 16 11:08:09 CEST 2005
CVS change done by Reimar Döffinger CVS
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv4341/libvo
Modified Files:
x11_common.c
Log Message:
helper functions for comparing strarg_t "strings".
Index: x11_common.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/x11_common.c,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- x11_common.c 16 Apr 2005 15:52:03 -0000 1.191
+++ x11_common.c 16 Jun 2005 09:08:07 -0000 1.192
@@ -2497,9 +2497,9 @@
{
strarg_t * strarg = (strarg_t *)arg;
- if ( strncmp( "use", strarg->str, 3 ) == 0 ||
- strncmp( "set", strarg->str, 3 ) == 0 ||
- strncmp( "cur", strarg->str, 3 ) == 0 )
+ if ( strargcmp( strarg, "use" ) == 0 ||
+ strargcmp( strarg, "set" ) == 0 ||
+ strargcmp( strarg, "cur" ) == 0 )
{
return 1;
}
@@ -2511,9 +2511,9 @@
{
strarg_t * strarg = (strarg_t *)arg;
- if ( strncmp( "bg", strarg->str, 2 ) == 0 ||
- strncmp( "man", strarg->str, 3 ) == 0 ||
- strncmp( "auto", strarg->str, 4 ) == 0 )
+ if ( strargcmp( strarg, "bg" ) == 0 ||
+ strargcmp( strarg, "man" ) == 0 ||
+ strargcmp( strarg, "auto" ) == 0 )
{
return 1;
}
More information about the MPlayer-cvslog
mailing list