From 84c098fe27582d8919cbf5771a4b98b86367b3c8 Mon Sep 17 00:00:00 2001 From: pooka Date: Mon, 11 Aug 2008 16:23:58 +0000 Subject: [PATCH] call puffs_exit() --- usr.sbin/puffs/mount_psshfs/psshfs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/usr.sbin/puffs/mount_psshfs/psshfs.c b/usr.sbin/puffs/mount_psshfs/psshfs.c index d466c2ad7d0c..56f660ebb37a 100644 --- a/usr.sbin/puffs/mount_psshfs/psshfs.c +++ b/usr.sbin/puffs/mount_psshfs/psshfs.c @@ -1,4 +1,4 @@ -/* $NetBSD: psshfs.c,v 1.47 2007/12/14 10:56:22 jmmv Exp $ */ +/* $NetBSD: psshfs.c,v 1.48 2008/08/11 16:23:58 pooka Exp $ */ /* * Copyright (c) 2006 Antti Kantee. All Rights Reserved. @@ -41,7 +41,7 @@ #include #ifndef lint -__RCSID("$NetBSD: psshfs.c,v 1.47 2007/12/14 10:56:22 jmmv Exp $"); +__RCSID("$NetBSD: psshfs.c,v 1.48 2008/08/11 16:23:58 pooka Exp $"); #endif /* !lint */ #include @@ -249,6 +249,7 @@ main(int argc, char *argv[]) if (puffs_mainloop(pu) == -1) err(1, "mainloop"); + puffs_exit(pu, 1); return 0; }