=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rdist/client.c,v retrieving revision 1.26 retrieving revision 1.27 diff -c -r1.26 -r1.27 *** src/usr.bin/rdist/client.c 2013/08/18 16:32:24 1.26 --- src/usr.bin/rdist/client.c 2014/07/05 05:05:51 1.27 *************** *** 1,4 **** ! /* $OpenBSD: client.c,v 1.26 2013/08/18 16:32:24 guenther Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: client.c,v 1.27 2014/07/05 05:05:51 guenther Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. *************** *** 204,210 **** } if (isokay) { ! new = (struct namelist *) xmalloc(sizeof(struct namelist)); new->n_name = xstrdup(rfile); new->n_regex = NULL; new->n_next = updfilelist; --- 204,210 ---- } if (isokay) { ! new = xmalloc(sizeof *new); new->n_name = xstrdup(rfile); new->n_regex = NULL; new->n_next = updfilelist; *************** *** 323,329 **** return(lp); } ! lp = (struct linkbuf *) xmalloc(sizeof(*lp)); lp->nextp = ihead; ihead = lp; lp->inum = statp->st_ino; --- 323,329 ---- return(lp); } ! lp = xmalloc(sizeof(*lp)); lp->nextp = ihead; ihead = lp; lp->inum = statp->st_ino;