Fix warning of unused variable

SVN Revision: 2776
This commit is contained in:
Badlop 2009-12-03 22:53:39 +00:00
parent 7b244652f1
commit 2265f52c34
1 changed files with 1 additions and 1 deletions

View File

@ -319,7 +319,7 @@ serve(LocalPath, DocRoot, DirectoryIndices, CustomHeaders, DefaultContentType, C
%% Troll through the directory indices attempting to find one which
%% works, if none can be found, return a 404.
serve_index(_FileName, [], CH, _DefaultContentType, _ContentTypes) ->
serve_index(_FileName, [], _CH, _DefaultContentType, _ContentTypes) ->
?HTTP_ERR_FILE_NOT_FOUND;
serve_index(FileName, [Index | T], CH, DefaultContentType, ContentTypes) ->
IndexFileName = filename:join([FileName] ++ [Index]),