From 3667ec9451b968683b57e95be025f80ab0a6bdfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 23 Jan 2012 09:20:46 +0100 Subject: Fix typespecs for calendar:datetime/0 in cowboy_http_static --- src/cowboy_http_static.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cowboy_http_static.erl') diff --git a/src/cowboy_http_static.erl b/src/cowboy_http_static.erl index 3e3cb9e..0ee996a 100644 --- a/src/cowboy_http_static.erl +++ b/src/cowboy_http_static.erl @@ -153,7 +153,7 @@ -type dirpath() :: string() | binary() | [binary()]. -type dirspec() :: dirpath() | {priv, atom(), dirpath()}. -type mimedef() :: {binary(), binary(), [{binary(), binary()}]}. --type etagarg() :: {filepath, binary()} | {mtime, cowboy_clock:datetime()} +-type etagarg() :: {filepath, binary()} | {mtime, calendar:datetime()} | {inode, non_neg_integer()} | {filesize, non_neg_integer()}. %% handler state @@ -240,7 +240,7 @@ forbidden(Req, #state{fileinfo={ok, #file_info{access=Access}}}=State) -> %% @private Read the time a file system system object was last modified. -spec last_modified(#http_req{}, #state{}) -> - {cowboy_clock:datetime(), #http_req{}, #state{}}. + {calendar:datetime(), #http_req{}, #state{}}. last_modified(Req, #state{fileinfo={ok, #file_info{mtime=Modified}}}=State) -> {Modified, Req, State}. -- cgit v1.2.3