From 55f52997a62b8cfc8341eb3434b659eb0f396494 Mon Sep 17 00:00:00 2001
From: Iustin Pop <iusty@k1024.org>
Date: Mon, 14 May 2012 23:54:09 +0200
Subject: [PATCH] Rename a variable for more consistency

At least, more consistency in the output of git grep convertObj :)
---
 xattr.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/xattr.c b/xattr.c
index c80314c..a4d6988 100644
--- a/xattr.c
+++ b/xattr.c
@@ -388,7 +388,7 @@ static PyObject *
 get_all(PyObject *self, PyObject *args, PyObject *keywds)
 {
     PyObject *myarg, *res;
-    int dolink=0;
+    int nofollow=0;
     const char *ns = NULL;
     char *buf_list, *buf_val;
     const char *s;
@@ -399,9 +399,9 @@ get_all(PyObject *self, PyObject *args, PyObject *keywds)
 
     /* Parse the arguments */
     if (!PyArg_ParseTupleAndKeywords(args, keywds, "O|iz", kwlist,
-                                     &myarg, &dolink, &ns))
+                                     &myarg, &nofollow, &ns))
         return NULL;
-    if(convertObj(myarg, &tgt, dolink) < 0)
+    if(convertObj(myarg, &tgt, nofollow) < 0)
         return NULL;
 
     /* Compute first the list of attributes */
-- 
2.39.5