Removing ccn_run from write_data
diff --git a/nlsr-sync-0.0/nlsr_sync.c b/nlsr-sync-0.0/nlsr_sync.c
index 3635c0f..313b1b9 100644
--- a/nlsr-sync-0.0/nlsr_sync.c
+++ b/nlsr-sync-0.0/nlsr_sync.c
@@ -70,7 +70,9 @@
     free(hexL);
     free(hexR);
     ccn_charbuf_destroy(&uri);
-//--Doing ourthing from here
+
+
+	//--Doing ourthing from here
  	struct ccn_indexbuf cid={0};
 
     	struct ccn_indexbuf *components=&cid;
@@ -605,10 +607,10 @@
 	blockread=strlen(data);
 
 	if (blockread > 0) {
-		ccn_run(nlsr->ccn, 100);
+		//ccn_run(nlsr->ccn, 100);
 		res = ccn_seqw_write(w, data, blockread);	
         	while (res == -1) {
-            		ccn_run(nlsr->ccn, 100);
+            		//ccn_run(nlsr->ccn, 100);
 	       		res = ccn_seqw_write(w, data, blockread);
            	}
     	}