Re: [PATCH] Fix string handling in virDomain{Get, Set}SchedulerParameters

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

 



"Richard W.M. Jones" <rjones@xxxxxxxxxx> wrote:
> This small patch fixes some bugs in the handling of the field string
> in virDomainGetSchedulerParameters and makes a similar pre-emptive fix
> to virDomainSetSchedulerParameters.
>
> Also, please don't use !strcmp(a,b), because it confuses me.  Better
> is to write strcmp(a,b) == 0 to mean "strings match" and strcmp(a,b)
> != 0 to mean "strings don't match".

Hi Rich,

I agree, but prefer to avoid direct use of strcmp altogether.
I use this definition:

  #define STREQ(a, b) (strcmp (a, b) == 0)

Then all uses are either
   STREQ(a, b) or
 ! STREQ(a, b)


[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Lib OS Info]     [Fedora Users]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]     [Fedora Tools]