diff mbox

[08/16] multipathd: Add envp variable

Message ID 1386744190-1295-9-git-send-email-bmarzins@redhat.com (mailing list archive)
State Not Applicable, archived
Delegated to: christophe varoqui
Headers show

Commit Message

Benjamin Marzinski Dec. 11, 2013, 6:43 a.m. UTC
A missing variable declaration was keeping multipathd from compiling.

Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
---
 multipathd/main.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Benjamin Marzinski Dec. 11, 2013, 6:53 a.m. UTC | #1
On Wed, Dec 11, 2013 at 12:43:02AM -0600, Benjamin Marzinski wrote:

I just thought I'd get in on the fun too.

Oops.

-Ben

> A missing variable declaration was keeping multipathd from compiling.
> 
> Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
> ---
>  multipathd/main.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/multipathd/main.c b/multipathd/main.c
> index c388e42..204fbb1 100644
> --- a/multipathd/main.c
> +++ b/multipathd/main.c
> @@ -1617,6 +1617,7 @@ child (void * param)
>  	struct multipath * mpp;
>  	int i;
>  	int rc, pid_rc;
> +	char *envp;
>  
>  	mlockall(MCL_CURRENT | MCL_FUTURE);
>  	sem_init(&exit_sem, 0, 0);
> -- 
> 1.8.4.2
> 
> --
> dm-devel mailing list
> dm-devel@redhat.com
> https://www.redhat.com/mailman/listinfo/dm-devel

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel
diff mbox

Patch

diff --git a/multipathd/main.c b/multipathd/main.c
index c388e42..204fbb1 100644
--- a/multipathd/main.c
+++ b/multipathd/main.c
@@ -1617,6 +1617,7 @@  child (void * param)
 	struct multipath * mpp;
 	int i;
 	int rc, pid_rc;
+	char *envp;
 
 	mlockall(MCL_CURRENT | MCL_FUTURE);
 	sem_init(&exit_sem, 0, 0);