comparison src/syslog2iptables.cpp @ 39:a9101672c0e9

shutdown removes iptables entries that we added
author carl
date Thu, 08 Nov 2007 11:46:54 -0800
parents 26c29da3fbdf
children cdd6dde8d4ec
comparison
equal deleted inserted replaced
38:26c29da3fbdf 39:a9101672c0e9
290 my_syslog("failed to create config loader thread"); 290 my_syslog("failed to create config loader thread");
291 if (pthread_detach(tid)) 291 if (pthread_detach(tid))
292 my_syslog("failed to detach config loader thread"); 292 my_syslog("failed to detach config loader thread");
293 293
294 worker(); 294 worker();
295 clear_strings(); // for valgrind checking 295 clear_strings(); // for valgrind checking
296 if (config) delete config; // for valgrind checking
296 297
297 return EXIT_SUCCESS; 298 return EXIT_SUCCESS;
298 } 299 }