Changeset 34563 in vbox for trunk/src/VBox/HostServices/auth
- Timestamp:
- Dec 1, 2010 11:39:52 AM (14 years ago)
- Location:
- trunk/src/VBox/HostServices/auth
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/auth/Makefile.kmk
r34558 r34563 54 54 VBoxAuth-sdkhdr_INST = $(INST_SDK)/bindings/auth/include/ 55 55 VBoxAuth-sdkhdr_MODE = a+r,u+w 56 VBoxAuth-sdkhdr_SOURCES = $(PATH_ROOT)/include/VBox/V RDPAuth.h=>VRDPAuth.h56 VBoxAuth-sdkhdr_SOURCES = $(PATH_ROOT)/include/VBox/VBoxAuth.h=>VBoxAuth.h 57 57 58 58 -
trunk/src/VBox/HostServices/auth/directoryservice/directoryservice.cpp
r34558 r34563 22 22 #include <iprt/assert.h> 23 23 24 #include <VBox/V RDPAuth.h>24 #include <VBox/VBoxAuth.h> 25 25 26 26 #include <DirectoryService/DirectoryService.h> -
trunk/src/VBox/HostServices/auth/pam/VBoxAuthPAM.c
r34558 r34563 28 28 * service must be lowercase. See PAM documentation for details. 29 29 * 30 * The VRDPAuth module takes the PAM service name from the30 * The Auth module takes the PAM service name from the 31 31 * environment variable VRDP_AUTH_PAM_SERVICE. If the variable 32 32 * is not specified, then the 'login' PAM service is used. … … 77 77 #include <security/pam_appl.h> 78 78 79 #include <VBox/V RDPAuth.h>79 #include <VBox/VBoxAuth.h> 80 80 81 81 #ifdef VRDP_PAM_DLLOAD -
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 { -
trunk/src/VBox/HostServices/auth/winlogon/winlogon.cpp
r34558 r34563 26 26 #include <Windows.h> 27 27 28 #include <VBox/V RDPAuth.h>28 #include <VBox/VBoxAuth.h> 29 29 30 30 static void dprintf(const char *fmt, ...)
Note:
See TracChangeset
for help on using the changeset viewer.