diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-12-01 23:55:25 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-12-10 13:45:05 +0100 |
commit | 0a4ada8d40fb687a659161ff7e0d1d0994264402 (patch) | |
tree | 9bba4a3017b9943de69c112e7e6d8aa3f04afefe /ftpfs | |
parent | 51c2bd7408b0a4ee73ecd1928d4c17d4fafb1ec2 (diff) | |
download | hurd-0a4ada8d40fb687a659161ff7e0d1d0994264402.tar.gz hurd-0a4ada8d40fb687a659161ff7e0d1d0994264402.tar.bz2 hurd-0a4ada8d40fb687a659161ff7e0d1d0994264402.zip |
Replace `bzero' with `memset'
For reference, this patch was created using the following semantic
patch, and then manually applying the change in all functions
containing nested functions, as those are not supported by Coccinelle.
@@
expression A, B;
@@
- bzero (A, B)
+ memset (A, 0, B)
* auth/auth.c: Replace `bzero' with `memset'.
* boot/boot.c: Likewise.
* defpager/defpager.c: Likewise.
* exec/exec.c: Likewise. Also, drop `safe_bzero' and just use
`hurd_safe_memset' directly.
* ext2fs/ext2fs.c: Likewise.
* ext2fs/getblk.c: Likewise.
* ext2fs/pager.c: Likewise.
* fatfs/pager.c: Likewise.
* ftpfs/dir.c: Likewise.
* ftpfs/netfs.c: Likewise.
* isofs/inode.c: Likewise.
* isofs/pager.c: Likewise.
* libdiskfs/file-getfh.c: Likewise.
* libdiskfs/file-statfs.c: Likewise.
* libfshelp/fetch-root.c: Likewise.
* libfshelp/start-translator.c: Likewise.
* libftpconn/create.c: Likewise.
* libftpconn/open.c: Likewise.
* libftpconn/unix.c: Likewise.
* libpipe/pipe.c: Likewise.
* libps/procstat.c: Likewise.
* libps/spec.c: Likewise.
* libshouldbeinlibc/cacheq.c: Likewise.
* libshouldbeinlibc/idvec.c: Likewise.
* libshouldbeinlibc/ugids.c: Likewise.
* libstore/argp.c: Likewise.
* libstore/enc.c: Likewise.
* libstore/kids.c: Likewise.
* libthreads/alpha/thread.c: Likewise.
* libtreefs/fsys.c: Likewise.
* libtrivfs/file-statfs.c: Likewise.
* mach-defpager/default_pager.c: Likewise.
* pfinet/glue-include/asm/uaccess.h: Likewise.
* pfinet/io-ops.c: Likewise.
* pfinet/options.c: Likewise.
* pfinet/socket.c: Likewise.
* pfinet/timer-emul.c: Likewise.
* pflocal/io.c: Likewise.
* startup/startup.c: Likewise.
* storeio/storeio.c: Likewise.
* sutils/fstab.c: Likewise.
* usermux/usermux.c: Likewise.
* utils/fakeauth.c: Likewise.
* utils/frobauth.c: Likewise.
* utils/login.c: Likewise.
* utils/x.c: Likewise.
Diffstat (limited to 'ftpfs')
-rw-r--r-- | ftpfs/dir.c | 4 | ||||
-rw-r--r-- | ftpfs/netfs.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ftpfs/dir.c b/ftpfs/dir.c index a9fea22f..be20b3db 100644 --- a/ftpfs/dir.c +++ b/ftpfs/dir.c @@ -64,7 +64,7 @@ rehash (struct ftpfs_dir *dir, size_t new_len) if (! new_htable) return ENOMEM; - bzero (new_htable, new_len * sizeof (struct ftpfs_dir_entry *)); + memset (new_htable, 0, new_len * sizeof(struct ftpfs_dir_entry *)); for (i = 0; i < old_len; i++) while (old_htable[i]) @@ -124,7 +124,7 @@ lookup (struct ftpfs_dir *dir, const char *name, int add) e->node = 0; e->dir = dir; e->stat_timestamp = 0; - bzero (&e->stat, sizeof e->stat); + memset (&e->stat, 0, sizeof e->stat); e->symlink_target = 0; e->noent = 0; e->valid = 0; diff --git a/ftpfs/netfs.c b/ftpfs/netfs.c index 5359acb9..cf5d9079 100644 --- a/ftpfs/netfs.c +++ b/ftpfs/netfs.c @@ -385,7 +385,7 @@ error_t netfs_attempt_statfs (struct iouser *cred, struct node *node, struct statfs *st) { - bzero (st, sizeof *st); + memset (st, 0, sizeof *st); st->f_type = FSTYPE_FTP; st->f_fsid = getpid (); return 0; |