diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Action.cc | 2 | ||||
-rw-r--r-- | lib/HttpServ.cc | 4 | ||||
-rw-r--r-- | lib/Variables.cc | 1 |
3 files changed, 3 insertions, 4 deletions
diff --git a/lib/Action.cc b/lib/Action.cc index e5825b9..23f96d0 100644 --- a/lib/Action.cc +++ b/lib/Action.cc @@ -52,7 +52,7 @@ Action * Action::Look4URL(const String & URL) { } /* - * Voici la skin principale. Elle nécessite un fichier 'grain.png' dans le répertoire datas + * Voici la skin principale. Elle nécessite un fichier 'grain.png' dans le répertoire data * et un fichier 'style.css' (fournis) */ diff --git a/lib/HttpServ.cc b/lib/HttpServ.cc index a4101a7..a923c83 100644 --- a/lib/HttpServ.cc +++ b/lib/HttpServ.cc @@ -165,11 +165,11 @@ int ProcessRequest::Do() throw(GeneralException) { ShowError(&b); } } else { - // Dans tous les autres cas de domaine, on cherche le fichier dans le répertoire datas. + // Dans tous les autres cas de domaine, on cherche le fichier dans le répertoire data. // On utilise try au cas où le fichier n'existe pas et donc que le constructeur // d'input renvoie une erreur. try { - Handle * i = new Input(String("datas/") + file); + Handle * i = new Input(String("data/") + file); SendHeads(&b, GetMime(file), String("Accept-Ranges: bytes") + endhl + "Content-Length: " + (unsigned long long int) i->GetSize() + endhl, i->GetModif()); i->SetNonBlock(); a = new CopyJob(i, &s); diff --git a/lib/Variables.cc b/lib/Variables.cc index 94c4c27..69a7f58 100644 --- a/lib/Variables.cc +++ b/lib/Variables.cc @@ -57,7 +57,6 @@ void Variables::Dump(Handle * h, const String & format) { } else { // Use format here... // **FIXME** -#warning FIXME } } } |