Module Name:    src
Committed By:   mrg
Date:           Mon Feb  4 04:56:35 UTC 2019

Modified Files:
        src/usr.sbin/sdpd: main.c

Log Message:
- convert 'done' to an unsigned, since it is used as one.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/usr.sbin/sdpd/main.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.sbin/sdpd/main.c
diff -u src/usr.sbin/sdpd/main.c:1.9 src/usr.sbin/sdpd/main.c:1.10
--- src/usr.sbin/sdpd/main.c:1.9	Wed Aug 31 13:32:41 2011
+++ src/usr.sbin/sdpd/main.c	Mon Feb  4 04:56:35 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: main.c,v 1.9 2011/08/31 13:32:41 joerg Exp $	*/
+/*	$NetBSD: main.c,v 1.10 2019/02/04 04:56:35 mrg Exp $	*/
 
 /*-
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@ __COPYRIGHT("@(#) Copyright (c) 2009 The
   Copyright (c) 2006 Itronix, Inc.\
   Copyright (c) 2004 Maksim Yevmenkin m_evmen...@yahoo.com.\
   All rights reserved.");
-__RCSID("$NetBSD: main.c,v 1.9 2011/08/31 13:32:41 joerg Exp $");
+__RCSID("$NetBSD: main.c,v 1.10 2019/02/04 04:56:35 mrg Exp $");
 
 #include <errno.h>
 #include <grp.h>
@@ -53,7 +53,7 @@ static bool	drop_root	(char const *user,
 static void	sighandler	(int s);
 __dead static void	usage		(void);
 
-static bool	done;
+static unsigned	done;
 
 /*
  * Bluetooth Service Discovery Procotol (SDP) daemon

Reply via email to