diff --git a/fish_shell/fish_globbing.c b/fish_shell/fish_globbing.c index fb7b37d..4e7d77c 100644 --- a/fish_shell/fish_globbing.c +++ b/fish_shell/fish_globbing.c @@ -250,7 +250,7 @@ WordList* getFiles(char* path, char* wildcardedString){ while((dir = readdir(directory)) != NULL){ - if(wildcardedString != NULL && dir->d_name != NULL && strcmp(dir->d_name, ".") && strcmp(dir->d_name, "..") && wildcardedStringMatches(wildcardedString, dir->d_name)){//sorry strcmp but I dont like you :( + if(wildcardedString != NULL && strcmp(dir->d_name, ".") && strcmp(dir->d_name, "..") && wildcardedStringMatches(wildcardedString, dir->d_name)){//sorry strcmp but I dont like you :( char* filePath = trueStrcat(path, dir->d_name); addEndWordList(files, filePath); diff --git a/fish_shell/fish_utils.c b/fish_shell/fish_utils.c index 6505798..ba874ea 100644 --- a/fish_shell/fish_utils.c +++ b/fish_shell/fish_utils.c @@ -38,7 +38,8 @@ char *getInsult(){ (char *) "Oh ! Une erreur ! Comme ta vie en fait...", (char *) "Nul !", (char *) "Pense à aller à l'école un jour", - (char *) "Et après on dit que c'est la faute de l'ordinateur..." + (char *) "Et après on dit que c'est la faute de l'ordinateur...", + (char *) "Tocard !" }; if (!init){ srand((unsigned int) time(NULL));