]> git.proxmox.com Git - mirror_frr.git/blobdiff - tests/lib/test_segv.c
Merge pull request #2445 from ppmathis/feature/bgp-pg-overrides
[mirror_frr.git] / tests / lib / test_segv.c
index 1810c5f4b2a82cae5fa2185ae6898556c053b71b..3c9b57f049f4ac5d5a38d43be93ffc1882df36bd 100644 (file)
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with Quagga; see the file COPYING.  If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * You should have received a copy of the GNU General Public License along
+ * with this program; see the file COPYING; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <zebra.h>
 #include "lib/log.h"
 #include "lib/memory.h"
 
-struct quagga_signal_t sigs[] = 
-{
-};
+struct quagga_signal_t sigs[] = {};
 
 struct thread_master *master;
 
-static int
-threadfunc (struct thread *thread)
+static int threadfunc(struct thread *thread)
 {
-  int *null = NULL;
-  *null += 1;
-  return 0;
+       int *null = NULL;
+       *null += 1;
+       return 0;
 }
 
-int
-main (void)
+int main(void)
 {
-  master = thread_master_create ();
-  signal_init (master, array_size(sigs), sigs);
+       master = thread_master_create(NULL);
+       signal_init(master, array_size(sigs), sigs);
 
-  zlog_default = openzlog("testsegv", ZLOG_NONE, 0,
-                          LOG_CONS|LOG_NDELAY|LOG_PID, LOG_DAEMON);
-  zlog_set_level (NULL, ZLOG_DEST_SYSLOG, ZLOG_DISABLED);
-  zlog_set_level (NULL, ZLOG_DEST_STDOUT, LOG_DEBUG);
-  zlog_set_level (NULL, ZLOG_DEST_MONITOR, ZLOG_DISABLED);
+       openzlog("testsegv", "NONE", 0, LOG_CONS | LOG_NDELAY | LOG_PID,
+                LOG_DAEMON);
+       zlog_set_level(ZLOG_DEST_SYSLOG, ZLOG_DISABLED);
+       zlog_set_level(ZLOG_DEST_STDOUT, LOG_DEBUG);
+       zlog_set_level(ZLOG_DEST_MONITOR, ZLOG_DISABLED);
 
-  thread_execute (master, threadfunc, 0, 0);
+       thread_execute(master, threadfunc, 0, 0);
 
-  exit (0);
+       exit(0);
 }