X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/7fe9b0b742d7dae9c5af1d292d11840b5c3cbfae..212ef3a04d19bcb5299c38fd153ee434e0f26efd:/client/ui.c diff --git a/client/ui.c b/client/ui.c index 9f4377c8..da21049e 100644 --- a/client/ui.c +++ b/client/ui.c @@ -1,3 +1,14 @@ +//----------------------------------------------------------------------------- +// Copyright (C) 2009 Michael Gernoth +// Copyright (C) 2010 iZsh +// +// This code is licensed to you under the terms of the GNU GPL, version 2 or, +// at your option, any later version. See the LICENSE.txt file for the text of +// the license. +//----------------------------------------------------------------------------- +// UI utilities +//----------------------------------------------------------------------------- + #include #include #include @@ -30,17 +41,6 @@ void PrintAndLog(char *fmt, ...) va_end(argptr); printf("\n"); if (logging && logfile) { -#if 0 - char zeit[25]; - time_t jetzt_t; - struct tm *jetzt; - - jetzt_t = time(NULL); - jetzt = localtime(&jetzt_t); - strftime(zeit, 25, "%b %e %T", jetzt); - - fprintf(logfile,"%s ", zeit); -#endif vfprintf(logfile, fmt, argptr2); fprintf(logfile,"\n"); fflush(logfile);