1
0
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:
Volker Lendecke 2005-05-24 07:55:02 +00:00 committed by Gerald (Jerry) Carter
parent 27d43f6d36
commit 4f36e4f434

View File

@ -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 );