Hi, older gcc versions (4.3 in the case of SUSE Linux Enterprise 11 SP 1 and SP 2) complain about uninitialized variables in the recent 5.4 release. The attached patch makes the build process a bit quieter. Cheers, Lars -- Lars Müller [ˈlaː(r)z ˈmʏlɐ] Samba Team + SUSE Labs SUSE Linux, Maxfeldstraße 5, 90409 Nürnberg, Germany
Author: Lars Mueller <lmuelle@xxxxxxxx> Subject: cifs-utils build warns bkupuid and bkupgid may be used uninitialized Bugzilla: na Index: cifs-utils-5.4/mount.cifs.c =================================================================== --- cifs-utils-5.4.orig/mount.cifs.c +++ cifs-utils-5.4/mount.cifs.c @@ -863,8 +863,8 @@ parse_options(const char *data, struct p int got_uid = 0; int got_cruid = 0; int got_gid = 0; - uid_t uid, cruid = 0, bkupuid; - gid_t gid, bkupgid; + uid_t uid, cruid = 0, bkupuid = 0; + gid_t gid, bkupgid = 0; char *ep; struct passwd *pw; struct group *gr;
Attachment:
pgp9snk7V5zR5.pgp
Description: PGP signature