Hello, > + char sock_serv_env_name[30];
To avoid a fixed-sized buffer you could use __asprintf. > + name = (char *)malloc (len + 100); Use __asprintf here too. > - servers[domain] = server; > + servers[domain] = server; Spurious hook, please try to minimize these. About the ChangeLog entry, it needs to be more precise: add the environment variable and macro _names_ since that's what people would grep for. Samuel