[build] minor compilation issues
authorChristophe Varoqui <root@xa-s05.(none)>
Mon, 13 Mar 2006 13:55:16 +0000 (14:55 +0100)
committerChristophe Varoqui <root@xa-s05.(none)>
Mon, 13 Mar 2006 13:55:16 +0000 (14:55 +0100)
commit8497928514aa3df6d46f24d8d9b70b086e9fcfbd
tree24c246e620625489f80a9952a873782174ff6c01
parent737b3c7554837da083b9f34a2586d5950b223193
[build] minor compilation issues

SuSE checker found some minor issues:

- refwwid in libmultipath/configure.c:get_refwwid() might be used
uninitialized. As dev_type is a simple 'int' there is nothing which
prevents the unsuspecting user to call it with an unhandled value.
We shoud rather use an enum and set refwwid to NULL to be on the safe
side.

- attr in libmultipath/discovery.c:devt2devname() might be used
uninitialized. Quite unlikely, but might happen in principle.
So better have it initialized.

- r in multipath/main.c:main() might be used uninitialized.
True. So have it initialized.
libmultipath/config.h
libmultipath/configure.c
libmultipath/configure.h
libmultipath/discovery.c
libmultipath/print.c
multipath/main.c