[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20091108155923.GA820@lilem.mirepesht>
Date: Sun, 8 Nov 2009 19:29:23 +0330
From: Ali Gholami Rudi <ali@...i.ir>
To: trivial@...nel.org
Cc: linux-kernel@...r.kernel.org,
Patrick Ohly <patrick.ohly@...el.com>,
linux-doc@...r.kernel.org, "David S. Miller" <davem@...emloft.net>
Subject: [PATCH] trivial: fix checking socket() in net tstamp example
Signed-off-by: Ali Gholami Rudi <ali@...i.ir>
---
.../networking/timestamping/timestamping.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Documentation/networking/timestamping/timestamping.c b/Documentation/networking/timestamping/timestamping.c
index a7936fe..bab619a 100644
--- a/Documentation/networking/timestamping/timestamping.c
+++ b/Documentation/networking/timestamping/timestamping.c
@@ -370,7 +370,7 @@ int main(int argc, char **argv)
}
sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP);
- if (socket < 0)
+ if (sock < 0)
bail("socket");
memset(&device, 0, sizeof(device));
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists