mirror of
git://slackware.nl/current.git
synced 2025-01-14 08:01:11 +01:00
9664bee729
Wed Sep 26 01:10:42 UTC 2012 Slackware 14.0 x86_64 stable is released! We're perfectionists here at Slackware, so this release has been a long time a-brewing. But we think you'll agree that it was worth the wait. Slackware 14.0 combines modern components, ease of use, and flexible configuration... our "KISS" philosophy demands it. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. Thanks to everyone who helped make this happen. The Slackware team, the upstream developers, and (of course) the awesome Slackware user community. Have fun! :-)
38 lines
1,022 B
Diff
38 lines
1,022 B
Diff
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] 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 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
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.11
|
|
|