View | Details | Raw Unified | Return to bug 118246
Collapse All | Expand All

(-)ChangeLog (+4 lines)
Lines 1-3 Link Here
1
Tue Sep 20 17:12:28 CEST 2005 Daniel Veillard <veillard@redhat.com>
2
3
	* server/gam_connection.c: trying to fix RH bug #168744
4
1
Sat Sep 10 12:46:38 CEST 2005 Daniel Veillard <veillard@redhat.com>
5
Sat Sep 10 12:46:38 CEST 2005 Daniel Veillard <veillard@redhat.com>
2
6
3
	* server/gam_connection.c: fixed a portability problem raised by
7
	* server/gam_connection.c: fixed a portability problem raised by
(-)server/gam_connection.c (-2 / +3 lines)
Lines 387-393 Link Here
387
	    gam_listener_remove_subscription(conn->listener, sub);
387
	    gam_listener_remove_subscription(conn->listener, sub);
388
	    gam_remove_subscription(sub);
388
	    gam_remove_subscription(sub);
389
#ifdef ENABLE_INOTIFY
389
#ifdef ENABLE_INOTIFY
390
	    if (gam_inotify_is_running())
390
	    if ((gam_inotify_is_running()) && (!gam_exclude_check(path)))
391
		gam_subscription_free(sub);
391
		gam_subscription_free(sub);
392
#endif
392
#endif
393
393
Lines 396-402 Link Here
396
			  gam_connection_get_pid(conn));
396
			  gam_connection_get_pid(conn));
397
	    }
397
	    }
398
	    g_free(path);
398
	    g_free(path);
399
        }   break;
399
	    break;
400
        }   
400
        case GAM_REQ_DEBUG:
401
        case GAM_REQ_DEBUG:
401
#ifdef GAMIN_DEBUG_API
402
#ifdef GAMIN_DEBUG_API
402
	    gam_debug_add(conn, req->path, options);
403
	    gam_debug_add(conn, req->path, options);

Return to bug 118246