Path: blob/main/crypto/krb5/src/windows/kfwlogon/kfwcpcc.c
34907 views
/*12Copyright 2005 by the Massachusetts Institute of Technology34All rights reserved.56Permission to use, copy, modify, and distribute this software and its7documentation for any purpose and without fee is hereby granted,8provided that the above copyright notice appear in all copies and that9both that copyright notice and this permission notice appear in10supporting documentation, and that the name of the Massachusetts11Institute of Technology (M.I.T.) not be used in advertising or publicity12pertaining to distribution of the software without specific, written13prior permission.1415M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING16ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL17M.I.T. BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR18ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,19WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,20ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS21SOFTWARE.2223*/2425#include <windows.h>26#include "kfwlogon.h"2728int main(int argc, char *argv[])29{30if ( argc != 2 )31return 1;3233KFW_initialize();3435return KFW_copy_file_cache_to_api_cache(argv[1]);36}373839