X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-lb0-f173.google.com (mail-lb0-f173.google.com [209.85.217.173]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id C0AFEDC06F6 for ; Mon, 12 Aug 2013 15:17:45 +0000 (UTC) Received: by mail-lb0-f173.google.com with SMTP id 10so5191459lbf.32 for ; Mon, 12 Aug 2013 13:26:40 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-gm-message-state:from:to:subject:date:message-id; bh=81YQNMrH+qIPC3nYsWQddHZlhSCEgoABUWQ6Rl47dUw=; b=T6Nfqosd+wo2t1oe+CnRcn7uXFpAANJUTD5UOPCrnw8FhooC7JJs9i+eMHlbATXi63 A9odKki/HzQOd5tN/fVJeBKed53Ns949SJQFC/yyzgSdyWpi2np5MmloeH+h1d+Jih2P vcf6eGzhmhU/DluZfe84WxyAjie7uEEn6blrPv0FFrrrflEifxdR2jmgsHS/QwMXfcTH PIDmTwKyWIyDrw9aDDnUrKBDNlZtEXFBvB1rnmBkLa24zT98e11L2lzMKV9hC+Z75dHy pWFsbjyInGBNJE1f6jSecAKbDj3DrVGO/RL/5w/6rR8UevPKBnbhHlzpWh07fgzRiOgO 0UnA== X-Gm-Message-State: ALoCoQkWkM/fpIahKOzMN7yEPeteAWFRxalENL5ECt/AAMwg+CuwHORihEBicM9OiWEo7snJImz1 X-Received: by 10.112.28.109 with SMTP id a13mr497056lbh.3.1376339200060; Mon, 12 Aug 2013 13:26:40 -0700 (PDT) Received: from alpine-dev.my.domain (83.79-160-43.customer.lyse.net. [79.160.43.83]) by mx.google.com with ESMTPSA id d9sm10058315lbf.2.2013.08.12.13.26.37 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 12 Aug 2013 13:26:39 -0700 (PDT) From: Eivind Uggedal To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] setup-timezone: fix bug in getopts parsing Date: Mon, 12 Aug 2013 22:26:16 +0200 Message-Id: <1376339176-3860-1-git-send-email-eivind@uggedal.com> X-Mailer: git-send-email 1.8.3.4 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- setup-timezone.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-timezone.in b/setup-timezone.in index 41d4f16..5034223 100755 --- a/setup-timezone.in +++ b/setup-timezone.in @@ -47,7 +47,7 @@ while getopts "hp:z:" opt; do case $opt in h) usage;; p) POSIXTZ="$OPTARG";; - t) ZONEINFOFOLDER="$OPTARG";; + z) ZONEINFOFOLDER="$OPTARG";; esac done -- 1.8.3.4 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---