diff options
Diffstat (limited to 'net-fs/cifs-utils/files/cifs-utils-5.5-initialize_rc_var_properly.patch')
-rw-r--r-- | net-fs/cifs-utils/files/cifs-utils-5.5-initialize_rc_var_properly.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/net-fs/cifs-utils/files/cifs-utils-5.5-initialize_rc_var_properly.patch b/net-fs/cifs-utils/files/cifs-utils-5.5-initialize_rc_var_properly.patch new file mode 100644 index 000000000000..2faa853e0a58 --- /dev/null +++ b/net-fs/cifs-utils/files/cifs-utils-5.5-initialize_rc_var_properly.patch @@ -0,0 +1,38 @@ +From 0eb3daa4b17ee64b464594f1a5d413ecb364957c Mon Sep 17 00:00:00 2001 +From: Jeff Layton <jlayton@samba.org> +Date: Thu, 14 Jun 2012 10:59:18 -0400 +Subject: [PATCH 1/1] mount.cifs: set rc to 0 in libcap toggle_dac_capability + +Thus spake Jochen: + +The mount.cifs program from the cifs-utils package 5.5 did not work on +my Linux system. It just exited without an error message and did not +mount anything. + +[...] + +I think, when this variable rc is now used in this function, it has also +to be properly initialized there. + +Reported-by: Jochen Roderburg <roderburg@uni-koeln.de> +Signed-off-by: Jeff Layton <jlayton@samba.org> +--- + mount.cifs.c | 2 +- + 1 files changed, 1 insertions(+), 1 deletions(-) + +diff --git a/mount.cifs.c b/mount.cifs.c +index a1b0454..6f3f382 100644 +--- a/mount.cifs.c ++++ b/mount.cifs.c +@@ -495,7 +495,7 @@ free_caps: + static int + toggle_dac_capability(int writable, int enable) + { +- int rc; ++ int rc = 0; + cap_t caps; + cap_value_t capability = writable ? CAP_DAC_OVERRIDE : CAP_DAC_READ_SEARCH; + +-- +1.7.0.4 + |