gdbus-tool: simplify some logic
[platform/upstream/glib.git] / gio / inotify / inotify-sub.c
index fa2e934..85b3411 100644 (file)
@@ -16,8 +16,7 @@
 
    You should have received a copy of the GNU Library General Public
    License along with the Gnome Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.
+   see <http://www.gnu.org/licenses/>.
 
    Authors: 
                 John McCutchan <john@johnmccutchan.com>
@@ -47,7 +46,8 @@ dup_dirname (const gchar *dirname)
 inotify_sub*
 _ih_sub_new (const gchar *dirname, 
              const gchar *filename,
-            gboolean     pair_moves,
+             gboolean     pair_moves,
+             gboolean     watch_hardlinks,
              gpointer     user_data)
 {
   inotify_sub *sub = NULL;
@@ -56,6 +56,7 @@ _ih_sub_new (const gchar *dirname,
   sub->dirname = dup_dirname (dirname);
   sub->filename = g_strdup (filename);
   sub->pair_moves = pair_moves;
+  sub->hardlinks = watch_hardlinks;
   sub->user_data = user_data;
 
   IS_W ("new subscription for %s being setup\n", sub->dirname);