Displaying 4 results from an estimated 4 matches for "4f1d9a8".
2014 Sep 22
2
[PATCH] daemon: augeas: filter out AUG_NO_STDINC from aug-init (RHBZ#1144927)
...for AUG_NO_STDINC to aug-init could have been to
not load the lenses right at init time loading them later; however, this
is what the AUG_NO_LOAD flag (= 32) does already.
---
daemon/augeas.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/daemon/augeas.c b/daemon/augeas.c
index ce49726..4f1d9a8 100644
--- a/daemon/augeas.c
+++ b/daemon/augeas.c
@@ -133,6 +133,11 @@ do_aug_init (const char *root, int flags)
return -1;
}
+ /* Filter out AUG_NO_STDINC, since the lenses in our custom path
+ * need the lenses from the system path.
+ */
+ flags &= ~AUG_NO_STDINC;
+
/* Pas...
2014 Sep 22
2
Re: [PATCH] daemon: augeas: filter out AUG_NO_STDINC from aug-init (RHBZ#1144927)
...it time loading them later;
> > however, this is what the AUG_NO_LOAD flag (= 32) does already.
> > ---
> >
> > daemon/augeas.c | 5 +++++
> > 1 file changed, 5 insertions(+)
> >
> > diff --git a/daemon/augeas.c b/daemon/augeas.c
> > index ce49726..4f1d9a8 100644
> > --- a/daemon/augeas.c
> > +++ b/daemon/augeas.c
> > @@ -133,6 +133,11 @@ do_aug_init (const char *root, int flags)
> >
> > return -1;
> >
> > }
> >
> > + /* Filter out AUG_NO_STDINC, since the lenses in our custom path...
2014 Sep 22
0
Re: [PATCH] daemon: augeas: filter out AUG_NO_STDINC from aug-init (RHBZ#1144927)
...e been to
> not load the lenses right at init time loading them later; however, this
> is what the AUG_NO_LOAD flag (= 32) does already.
> ---
> daemon/augeas.c | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/daemon/augeas.c b/daemon/augeas.c
> index ce49726..4f1d9a8 100644
> --- a/daemon/augeas.c
> +++ b/daemon/augeas.c
> @@ -133,6 +133,11 @@ do_aug_init (const char *root, int flags)
> return -1;
> }
>
> + /* Filter out AUG_NO_STDINC, since the lenses in our custom path
> + * need the lenses from the system path.
> + *...
2014 Sep 22
0
Re: [PATCH] daemon: augeas: filter out AUG_NO_STDINC from aug-init (RHBZ#1144927)
...t; however, this is what the AUG_NO_LOAD flag (= 32) does already.
> > > ---
> > >
> > > daemon/augeas.c | 5 +++++
> > > 1 file changed, 5 insertions(+)
> > >
> > > diff --git a/daemon/augeas.c b/daemon/augeas.c
> > > index ce49726..4f1d9a8 100644
> > > --- a/daemon/augeas.c
> > > +++ b/daemon/augeas.c
> > > @@ -133,6 +133,11 @@ do_aug_init (const char *root, int flags)
> > >
> > > return -1;
> > >
> > > }
> > >
> > > + /* Filter out AUG_NO...