Deleted Added
full compact
26,27c26,27
< * $OpenBSD: patch.c,v 1.52 2014/11/26 18:34:51 millert Exp $
< * $FreeBSD: stable/10/usr.bin/patch/patch.c 276706 2015-01-05 16:09:51Z pfg $
---
> * $OpenBSD: patch.c,v 1.54 2014/12/13 10:31:07 tobias Exp $
> * $FreeBSD: stable/10/usr.bin/patch/patch.c 276807 2015-01-08 03:44:54Z pfg $
218c218
<
---
>
224c224
< outname = savestr(filearg[0]);
---
> outname = xstrdup(filearg[0]);
419c419
<
---
>
517c517
< simple_backup_suffix = savestr(optarg);
---
> simple_backup_suffix = xstrdup(optarg);
520c520
< origprae = savestr(optarg);
---
> origprae = xstrdup(optarg);
558c558
< filearg[filec] = savestr(optarg);
---
> filearg[filec] = xstrdup(optarg);
570c570
< outname = savestr(optarg);
---
> outname = xstrdup(optarg);
614c614
< filearg[0] = savestr(*Argv++);
---
> filearg[0] = xstrdup(*Argv++);
619c619
< filearg[filec] = savestr(*Argv++);
---
> filearg[filec] = xstrdup(*Argv++);