From 26862d52f1aecfb40922f5d7cc89d4da4b26a8b7 Mon Sep 17 00:00:00 2001 From: Simon Morlat <simon.morlat@linphone.org> Date: Fri, 4 Nov 2011 10:51:14 +0100 Subject: [PATCH] remove debug messages --- coreapi/lpconfig.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/coreapi/lpconfig.c b/coreapi/lpconfig.c index a0859a2997..d12166ec49 100644 --- a/coreapi/lpconfig.c +++ b/coreapi/lpconfig.c @@ -138,18 +138,15 @@ LpItem *lp_section_find_item(LpSection *sec, const char *name){ } void lp_config_parse(LpConfig *lpconfig, FILE *file){ - ms_error("Entering lp_config_parse"); char tmp[MAX_LEN]= {'\0'}; LpSection *cur=NULL; if (file==NULL) return; - ms_message("Entering While"); while(fgets(tmp,MAX_LEN,file)!=NULL){ tmp[sizeof(tmp) -1] = '\0'; char *pos1,*pos2; pos1=strchr(tmp,'['); - ms_message("Pos1 = %s", pos1); if (pos1!=NULL && is_first_char(tmp,pos1) ){ pos2=strchr(pos1,']'); if (pos2!=NULL){ -- GitLab