mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
r6953: Many compilers in the build farm don't like static variables initialized with
strlen(..). Jerry, I think this needs another fix. I just want to make the build farm happy. Not merging to trunk, this needs further looking at. Volker
This commit is contained in:
parent
27d43f6d36
commit
4f36e4f434
@ -55,9 +55,9 @@ static char* trim_reg_path( char *path )
|
||||
uint16 key_len = strlen(path);
|
||||
uint16 base_key_len;
|
||||
|
||||
static int key_printing_len = strlen( KEY_PRINTING );
|
||||
static int key_printing2k_len = strlen( KEY_PRINTING_2K );
|
||||
static int key_printing_ports_len = strlen( KEY_PRINTING_PORTS );
|
||||
int key_printing_len = strlen( KEY_PRINTING );
|
||||
int key_printing2k_len = strlen( KEY_PRINTING_2K );
|
||||
int key_printing_ports_len = strlen( KEY_PRINTING_PORTS );
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user