forked from pool/systemd
3283fdeb6b
add: 1026-re-add-persistent-net.patch - rebase all patches, ensure that they apply properly. OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=357
25 lines
853 B
Diff
25 lines
853 B
Diff
From 377ec8bf1907a1a227d195cc3721c4acbad19213 Mon Sep 17 00:00:00 2001
|
|
From: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
|
|
Date: Wed, 14 Nov 2012 00:18:02 +0100
|
|
Subject: [PATCH] delta.c: fix option '-t'
|
|
|
|
Both the help and man page claims that it accepts -t with an argument
|
|
so let's do that.
|
|
---
|
|
src/delta/delta.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
Index: systemd-195/src/delta/delta.c
|
|
===================================================================
|
|
--- systemd-195.orig/src/delta/delta.c
|
|
+++ systemd-195/src/delta/delta.c
|
|
@@ -375,7 +375,7 @@ static int parse_argv(int argc, char *ar
|
|
assert(argc >= 1);
|
|
assert(argv);
|
|
|
|
- while ((c = getopt_long(argc, argv, "h", options, NULL)) >= 0) {
|
|
+ while ((c = getopt_long(argc, argv, "ht:", options, NULL)) >= 0) {
|
|
|
|
switch (c) {
|
|
|