Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/ntfs adapt to ntfs_readattr() change: pass NULL as the s...



details:   https://anonhg.NetBSD.org/src/rev/5a77484f2c73
branches:  trunk
changeset: 476082:5a77484f2c73
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Sun Sep 05 10:45:03 1999 +0000

description:
adapt to ntfs_readattr() change: pass NULL as the struct uio * parameter

diffstat:

 sys/ntfs/ntfs_vfsops.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 9402a18db368 -r 5a77484f2c73 sys/ntfs/ntfs_vfsops.c
--- a/sys/ntfs/ntfs_vfsops.c    Sun Sep 05 09:19:35 1999 +0000
+++ b/sys/ntfs/ntfs_vfsops.c    Sun Sep 05 10:45:03 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ntfs_vfsops.c,v 1.8 1999/08/16 08:11:34 jdolecek Exp $ */
+/*     $NetBSD: ntfs_vfsops.c,v 1.9 1999/09/05 10:45:03 jdolecek Exp $ */
 
 /*-
  * Copyright (c) 1998, 1999 Semen Ustimenko
@@ -521,7 +521,7 @@
                        error = ntfs_readattr(ntmp, VTONT(vp),
                                        NTFS_A_DATA, NULL,
                                        num * sizeof(ad), sizeof(ad),
-                                       &ad);
+                                       &ad, NULL);
                        if (error)
                                goto out1;
                        if (ad.ad_name[0] == 0)
@@ -540,7 +540,7 @@
                        error = ntfs_readattr(ntmp, VTONT(vp),
                                        NTFS_A_DATA, NULL,
                                        i * sizeof(ad), sizeof(ad),
-                                       &ad);
+                                       &ad, NULL);
                        if (error)
                                goto out1;
                        j = 0;
@@ -714,7 +714,7 @@
        MALLOC(tmp, u_int8_t *, bmsize, M_TEMP, M_WAITOK);
 
        error = ntfs_readattr(ntmp, VTONT(vp), NTFS_A_DATA, NULL,
-                              0, bmsize, tmp);
+                              0, bmsize, tmp, NULL);
        if (error)
                goto out;
 



Home | Main Index | Thread Index | Old Index