Patch from Denis Vlasenko turning static const int (which gets emitted into
the busybox binary) into enums (which don't).
This commit is contained in:
@@ -51,7 +51,7 @@
|
||||
#define MAXIDLETIME 45
|
||||
|
||||
static const char ident_substr[] = " : USERID : UNIX : ";
|
||||
static const int ident_substr_len = sizeof(ident_substr) - 1;
|
||||
enum { ident_substr_len = sizeof(ident_substr) - 1 };
|
||||
#define PIDFILE "/var/run/identd.pid"
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user