summaryrefslogtreecommitdiff
path: root/usr.sbin/iscsictl
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2010-09-25 16:23:02 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2010-09-25 16:23:02 +0000
commit1aa21e1a8f73c88464f3cc3915ed2e6833906b15 (patch)
tree4835452d1c97b3f66fe77bff01010c39a0582f59 /usr.sbin/iscsictl
parent8052d6d6974a462eef9b378ee69420392831d4b4 (diff)
spacing, no binary changes.
Diffstat (limited to 'usr.sbin/iscsictl')
-rw-r--r--usr.sbin/iscsictl/iscsictl.c6
-rw-r--r--usr.sbin/iscsictl/parse.y4
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/iscsictl/iscsictl.c b/usr.sbin/iscsictl/iscsictl.c
index e9c7860d2ab..e577ac56bf7 100644
--- a/usr.sbin/iscsictl/iscsictl.c
+++ b/usr.sbin/iscsictl/iscsictl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: iscsictl.c,v 1.1 2010/09/24 09:45:17 claudio Exp $ */
+/* $OpenBSD: iscsictl.c,v 1.2 2010/09/25 16:23:01 sobrado Exp $ */
/*
* Copyright (c) 2010 Claudio Jeker <claudio@openbsd.org>
@@ -44,7 +44,7 @@ __dead void
usage(void)
{
extern char *__progname;
-
+
fprintf(stderr,"usage: %s [-s socket] command [argument ...]\n",
__progname);
exit(1);
@@ -64,7 +64,7 @@ main (int argc, char* argv[])
struct iscsi_config *cf;
char *tname, *iname;
int ch, csock;
-
+
/* check flags */
while ((ch = getopt(argc, argv, "f:s:")) != -1) {
switch (ch) {
diff --git a/usr.sbin/iscsictl/parse.y b/usr.sbin/iscsictl/parse.y
index 337cbe7d7d3..2b54da26b50 100644
--- a/usr.sbin/iscsictl/parse.y
+++ b/usr.sbin/iscsictl/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.1 2010/09/24 09:45:17 claudio Exp $ */
+/* $OpenBSD: parse.y,v 1.2 2010/09/25 16:23:01 sobrado Exp $ */
/*
* Copyright (c) 2010 David Gwynne <dlg@openbsd.org>
@@ -609,7 +609,7 @@ pushfile(const char *name, int secret)
free(nfile->name);
free(nfile);
return (NULL);
- }
+ }
nfile->lineno = 1;
TAILQ_INSERT_TAIL(&files, nfile, entry);
return (nfile);