From f331653fe8607988d0ef478ed2860e79b0fa88a8 Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Wed, 5 Jan 2011 12:01:14 +0000 Subject: maint: replace uses of ignore_ptr with ignore_value * gnulib: Update for enhanced ignore_value() * src/chcon.c (process_file): Don't use the deprecated ignore_ptr. * src/chmod.c (process_file): Likewise. * src/chown-core.c (change_file_owner): Likewise. --- src/chcon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/chcon.c') diff --git a/src/chcon.c b/src/chcon.c index ee25c3d05..5174a46fc 100644 --- a/src/chcon.c +++ b/src/chcon.c @@ -226,7 +226,7 @@ process_file (FTS *fts, FTSENT *ent) /* Tell fts not to traverse into this hierarchy. */ fts_set (fts, ent, FTS_SKIP); /* Ensure that we do not process "/" on the second visit. */ - ignore_ptr (fts_read (fts)); + ignore_value (fts_read (fts)); return false; } return true; -- cgit v1.2.3-54-g00ecf