Module Name:    src
Committed By:   pgoyette
Date:           Wed May 17 02:40:58 UTC 2017

Modified Files:
        src/sys/net [prg-localcount2]: if_tap.c

Log Message:
Actually return the retrun value that we computed.


To generate a diff of this commit:
cvs rdiff -u -r1.99.4.2 -r1.99.4.3 src/sys/net/if_tap.c

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

Modified files:

Index: src/sys/net/if_tap.c
diff -u src/sys/net/if_tap.c:1.99.4.2 src/sys/net/if_tap.c:1.99.4.3
--- src/sys/net/if_tap.c:1.99.4.2	Wed May 17 01:44:18 2017
+++ src/sys/net/if_tap.c	Wed May 17 02:40:58 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_tap.c,v 1.99.4.2 2017/05/17 01:44:18 pgoyette Exp $	*/
+/*	$NetBSD: if_tap.c,v 1.99.4.3 2017/05/17 02:40:58 pgoyette Exp $	*/
 
 /*
  *  Copyright (c) 2003, 2004, 2008, 2009 The NetBSD Foundation.
@@ -33,7 +33,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.99.4.2 2017/05/17 01:44:18 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tap.c,v 1.99.4.3 2017/05/17 02:40:58 pgoyette Exp $");
 
 #if defined(_KERNEL_OPT)
 
@@ -808,6 +808,7 @@ tap_dev_cloner(struct lwp *l)
 	    (void *)(intptr_t)device_unit(sc->sc_dev));
 
 	device_release(sc->sc_dev);
+	return rv;
 }
 
 /*

Reply via email to