*** empty log message ***

This commit is contained in:
glenux 2004-02-26 10:52:40 +00:00 committed by Glenn Y. Rolland
parent 0b03fbe10f
commit 06b58ca561
2 changed files with 4 additions and 4 deletions

View file

@ -15,8 +15,7 @@ subdir:
$(MAKE) -C test/ $(MAKE) -C test/
doc: doc:
( cd src/ ; \ $(MAKE) -C doc/rapport
$(MAKE) doc )
clean: clean:
$(MAKE) clean -C src/ $(MAKE) clean -C src/

View file

@ -19,8 +19,8 @@ int about(char * spaceId){
} else { } else {
int err; int err;
msgSpaceListLock(); msgSpaceListLock();
err=msgSpaceListFindId(spaceId); err=msgSpaceListFindId(spaceId);
msgSpaceListUnlock(); msgSpaceListUnlock();
if (err < 1){ if (err < 1){
if (err==0){ if (err==0){
// le msgSpace existe // le msgSpace existe
@ -59,6 +59,7 @@ int about(char * spaceId){
// zut, il y a soit une erreur // zut, il y a soit une erreur
NZG_ERROR("spaceListFindId : error ",spaceId); NZG_ERROR("spaceListFindId : error ",spaceId);
} }
} else {
// on quitte : l'element n'existe // on quitte : l'element n'existe
fprintf(stderr,"Ident %s does not exist.\n",spaceId); fprintf(stderr,"Ident %s does not exist.\n",spaceId);
} }