From 1c4b40e1bc8c41a21df30eafe5cd3c5ef8d88d26 Mon Sep 17 00:00:00 2001 From: pooka Date: Wed, 20 Jun 2007 21:11:26 +0000 Subject: [PATCH] fix typo from previous rototill, makes this work again --- share/examples/puffs/rot13fs/rot13fs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/examples/puffs/rot13fs/rot13fs.c b/share/examples/puffs/rot13fs/rot13fs.c index 3c14ee310e7a..40af25ce47c0 100644 --- a/share/examples/puffs/rot13fs/rot13fs.c +++ b/share/examples/puffs/rot13fs/rot13fs.c @@ -1,4 +1,4 @@ -/* $NetBSD: rot13fs.c,v 1.8 2007/06/06 01:55:02 pooka Exp $ */ +/* $NetBSD: rot13fs.c,v 1.9 2007/06/20 21:11:26 pooka Exp $ */ /* * Copyright (c) 2007 Antti Kantee. All Rights Reserved. @@ -170,7 +170,7 @@ main(int argc, char *argv[]) for (i = 0; i < 26; i++) tbl[i + 'A'] = 'A' + ((i + 13) % 26); - if (puffs_mount(pu, argv[0], mntflags, pn_root) == -1) + if (puffs_mount(pu, argv[1], mntflags, pn_root) == -1) err(1, "puffs_mount"); return puffs_mainloop(pu, lflags);