rx: Remove RX_CALL_BUSY
[openafs.git] / src / WINNT / afsd / afscpcc.c
1 /*
2  * Copyright 2005,2006 Secure Endpoints Inc.
3  * All Rights Reserved.
4  *
5  * This software has been released under the terms of the MIT License.
6  */
7
8 #include <afsconfig.h>
9 #include <afs/param.h>
10 #include <roken.h>
11
12 #include <windows.h>
13 #include <afskfw.h>
14
15 int main(int argc, char *argv[])
16 {
17     if ( argc != 2 )
18         return 1;
19
20     KFW_initialize();
21
22     return KFW_AFS_copy_file_cache_to_default_cache(argv[1]);
23 }
24
25