Module Name: src Committed By: christos Date: Sun Nov 4 22:46:08 UTC 2012
Modified Files: src/usr.sbin/puffs/mount_psshfs: psbuf.c psshfs.c subr.c Log Message: include the headers you use To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/usr.sbin/puffs/mount_psshfs/psbuf.c cvs rdiff -u -r1.65 -r1.66 src/usr.sbin/puffs/mount_psshfs/psshfs.c cvs rdiff -u -r1.50 -r1.51 src/usr.sbin/puffs/mount_psshfs/subr.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/puffs/mount_psshfs/psbuf.c diff -u src/usr.sbin/puffs/mount_psshfs/psbuf.c:1.18 src/usr.sbin/puffs/mount_psshfs/psbuf.c:1.19 --- src/usr.sbin/puffs/mount_psshfs/psbuf.c:1.18 Fri Jan 8 05:53:31 2010 +++ src/usr.sbin/puffs/mount_psshfs/psbuf.c Sun Nov 4 17:46:08 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: psbuf.c,v 1.18 2010/01/08 10:53:31 pooka Exp $ */ +/* $NetBSD: psbuf.c,v 1.19 2012/11/04 22:46:08 christos Exp $ */ /* * Copyright (c) 2006-2009 Antti Kantee. All Rights Reserved. @@ -27,7 +27,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: psbuf.c,v 1.18 2010/01/08 10:53:31 pooka Exp $"); +__RCSID("$NetBSD: psbuf.c,v 1.19 2012/11/04 22:46:08 christos Exp $"); #endif /* !lint */ /* @@ -39,6 +39,7 @@ __RCSID("$NetBSD: psbuf.c,v 1.18 2010/01 #include <sys/types.h> #include <sys/time.h> #include <sys/vnode.h> +#include <sys/socket.h> #include <err.h> #include <errno.h> Index: src/usr.sbin/puffs/mount_psshfs/psshfs.c diff -u src/usr.sbin/puffs/mount_psshfs/psshfs.c:1.65 src/usr.sbin/puffs/mount_psshfs/psshfs.c:1.66 --- src/usr.sbin/puffs/mount_psshfs/psshfs.c:1.65 Wed Aug 31 09:32:39 2011 +++ src/usr.sbin/puffs/mount_psshfs/psshfs.c Sun Nov 4 17:46:08 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: psshfs.c,v 1.65 2011/08/31 13:32:39 joerg Exp $ */ +/* $NetBSD: psshfs.c,v 1.66 2012/11/04 22:46:08 christos Exp $ */ /* * Copyright (c) 2006-2009 Antti Kantee. All Rights Reserved. @@ -41,12 +41,14 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: psshfs.c,v 1.65 2011/08/31 13:32:39 joerg Exp $"); +__RCSID("$NetBSD: psshfs.c,v 1.66 2012/11/04 22:46:08 christos Exp $"); #endif /* !lint */ #include <sys/types.h> #include <sys/wait.h> +#include <sys/socket.h> +#include <stdio.h> #include <assert.h> #include <err.h> #include <errno.h> Index: src/usr.sbin/puffs/mount_psshfs/subr.c diff -u src/usr.sbin/puffs/mount_psshfs/subr.c:1.50 src/usr.sbin/puffs/mount_psshfs/subr.c:1.51 --- src/usr.sbin/puffs/mount_psshfs/subr.c:1.50 Wed Mar 31 22:34:09 2010 +++ src/usr.sbin/puffs/mount_psshfs/subr.c Sun Nov 4 17:46:08 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: subr.c,v 1.50 2010/04/01 02:34:09 pooka Exp $ */ +/* $NetBSD: subr.c,v 1.51 2012/11/04 22:46:08 christos Exp $ */ /* * Copyright (c) 2006 Antti Kantee. All Rights Reserved. @@ -27,9 +27,10 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: subr.c,v 1.50 2010/04/01 02:34:09 pooka Exp $"); +__RCSID("$NetBSD: subr.c,v 1.51 2012/11/04 22:46:08 christos Exp $"); #endif /* !lint */ +#include <stdio.h> #include <assert.h> #include <err.h> #include <errno.h>