=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdistd/filesys-os.c,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/rdistd/filesys-os.c 1999/02/04 23:18:57 1.6 --- src/usr.bin/rdistd/filesys-os.c 2003/04/05 20:31:58 1.7 *************** *** 1,4 **** ! /* $OpenBSD: filesys-os.c,v 1.6 1999/02/04 23:18:57 millert Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: filesys-os.c,v 1.7 2003/04/05 20:31:58 deraadt Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. *************** *** 39,45 **** "$From: filesys-os.c,v 6.17 1996/01/17 21:02:45 mcooper Exp mcooper $"; #else static char RCSid[] = ! "$OpenBSD: filesys-os.c,v 1.6 1999/02/04 23:18:57 millert Exp $"; #endif static char sccsid[] = "@(#)filesys-os.c"; --- 39,45 ---- "$From: filesys-os.c,v 6.17 1996/01/17 21:02:45 mcooper Exp mcooper $"; #else static char RCSid[] = ! "$OpenBSD: filesys-os.c,v 1.7 2003/04/05 20:31:58 deraadt Exp $"; #endif static char sccsid[] = "@(#)filesys-os.c"; *************** *** 193,199 **** mntstruct.me_flags |= MEFLAG_READONLY; #endif if (f_type_eq(mnt, MOUNT_NFS)) { ! (void) sprintf(remote_dev, "%s", mnt->f_mntfromname); mntstruct.me_path = remote_dev; mntstruct.me_type = METYPE_NFS; } else { --- 193,200 ---- mntstruct.me_flags |= MEFLAG_READONLY; #endif if (f_type_eq(mnt, MOUNT_NFS)) { ! (void) snprintf(remote_dev, sizeof remote_dev, ! "%s", mnt->f_mntfromname); mntstruct.me_path = remote_dev; mntstruct.me_type = METYPE_NFS; } else {