Changeset 34563 in vbox for trunk/src/VBox/HostServices/auth/simple
- Timestamp:
- Dec 1, 2010 11:39:52 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/auth/simple/VBoxAuthSimple.cpp
r34558 r34563 26 26 #include <iprt/sha.h> 27 27 28 #include <VBox/V RDPAuth.h>28 #include <VBox/VBoxAuth.h> 29 29 30 30 #include <VBox/com/com.h> … … 36 36 37 37 /* If defined, debug messages will be written to the specified file. */ 38 //#define VRDPAUTH_DEBUG_FILE_NAME "/tmp/VRDPAuth.log"38 //#define AUTH_DEBUG_FILE_NAME "/tmp/VBoxAuth.log" 39 39 40 40 41 41 static void dprintf(const char *fmt, ...) 42 42 { 43 #ifdef VRDPAUTH_DEBUG_FILE_NAME43 #ifdef AUTH_DEBUG_FILE_NAME 44 44 va_list va; 45 45 … … 50 50 vsnprintf(buffer, sizeof(buffer), fmt, va); 51 51 52 FILE *f = fopen( VRDPAUTH_DEBUG_FILE_NAME, "ab");52 FILE *f = fopen(AUTH_DEBUG_FILE_NAME, "ab"); 53 53 if (f) 54 54 {
Note:
See TracChangeset
for help on using the changeset viewer.