aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzblctrl.c
diff options
context:
space:
mode:
Diffstat (limited to 'uzblctrl.c')
-rw-r--r--uzblctrl.c12
1 files changed, 6 insertions, 6 deletions
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\"");