From c4faad1f9a553bafea9f24917bf709b2bb70213f Mon Sep 17 00:00:00 2001 From: Tom Adams Date: Tue, 14 Jul 2009 22:35:49 +0100 Subject: Whitespace fixes. And ignore whitespace in formfiller data files. --- uzblctrl.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'uzblctrl.c') diff --git a/uzblctrl.c b/uzblctrl.c index 93584bc..e768b7f 100644 --- a/uzblctrl.c +++ b/uzblctrl.c @@ -33,27 +33,27 @@ main(int argc, char* argv[]) { int s, len; struct sockaddr_un remote; char tmp; - + if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) == -1) { perror ("socket"); exit (1); } - + remote.sun_family = AF_UNIX; strcpy (remote.sun_path, (char *) sockpath); len = strlen (remote.sun_path) + sizeof (remote.sun_family); - + if (connect (s, (struct sockaddr *) &remote, len) == -1) { perror ("connect"); exit (1); } - + if ((send (s, command, strlen (command), 0) == -1) || (send (s, "\n", 1, 0) == -1)) { perror ("send"); exit (1); } - + while ((len = recv (s, &tmp, 1, 0))) { putchar(tmp); if (tmp == '\n') @@ -61,7 +61,7 @@ main(int argc, char* argv[]) { } close(s); - + return 0; } else { fprintf(stderr, "Usage: uzblctrl -s /path/to/socket -c \"command\""); -- cgit v1.2.3