diff options
Diffstat (limited to 'lib/kernel/src/auth.erl')
| -rw-r--r-- | lib/kernel/src/auth.erl | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/kernel/src/auth.erl b/lib/kernel/src/auth.erl index 6ae786ebd9..7d463103e3 100644 --- a/lib/kernel/src/auth.erl +++ b/lib/kernel/src/auth.erl @@ -1,7 +1,7 @@  %%  %% %CopyrightBegin%  %% -%% Copyright Ericsson AB 1996-2012. All Rights Reserved. +%% Copyright Ericsson AB 1996-2013. All Rights Reserved.  %%  %% The contents of this file are subject to the Erlang Public License,  %% Version 1.1, (the "License"); you may not use this file except in @@ -384,14 +384,14 @@ create_cookie(Name) ->  		{{error,Reason}, _} ->  		    {error,  		     lists:flatten( -		       io_lib:format("Failed to write to cookie file '~s': ~p", [Name, Reason]))}; +		       io_lib:format("Failed to write to cookie file '~ts': ~p", [Name, Reason]))};  		{ok, {error, Reason}} ->  		    {error, "Failed to change mode: " ++ atom_to_list(Reason)}  	    end;  	{error,Reason} ->  	    {error,  	     lists:flatten( -	       io_lib:format("Failed to create cookie file '~s': ~p", [Name, Reason]))} +	       io_lib:format("Failed to create cookie file '~ts': ~p", [Name, Reason]))}      end.  random_cookie(0, _, Result) ->  | 
