From 9773a12efa79c689546eb759c92496bd70e2eee8 Mon Sep 17 00:00:00 2001 From: Robert Vazan Date: Thu, 26 Sep 2019 20:15:05 +0000 Subject: [PATCH] Unicode fixes --- GuerrillaNtp/AssemblyInfo.cs | 2 +- GuerrillaNtp/NtpClient.cs | 4 ++-- GuerrillaNtp/NtpPacket.cs | 4 ++-- NtpCommand/Program.cs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GuerrillaNtp/AssemblyInfo.cs b/GuerrillaNtp/AssemblyInfo.cs index a378e33..737f3b9 100644 --- a/GuerrillaNtp/AssemblyInfo.cs +++ b/GuerrillaNtp/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com +// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com using System.Reflection; // General Information about an assembly is controlled through the following diff --git a/GuerrillaNtp/NtpClient.cs b/GuerrillaNtp/NtpClient.cs index fc975f3..73dd6ed 100644 --- a/GuerrillaNtp/NtpClient.cs +++ b/GuerrillaNtp/NtpClient.cs @@ -1,4 +1,4 @@ -// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com +// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com using System; using System.Net; using System.Net.Sockets; @@ -161,4 +161,4 @@ public NtpPacket Query(NtpPacket request) /// public NtpPacket Query() { return Query(new NtpPacket()); } } -} \ No newline at end of file +} diff --git a/GuerrillaNtp/NtpPacket.cs b/GuerrillaNtp/NtpPacket.cs index 2225019..aa1aac8 100644 --- a/GuerrillaNtp/NtpPacket.cs +++ b/GuerrillaNtp/NtpPacket.cs @@ -1,4 +1,4 @@ -// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com +// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com using System; namespace GuerrillaNtp @@ -354,4 +354,4 @@ void CheckTimestamps() static uint SwapEndianness(uint x) { return ((x & 0xff) << 24) | ((x & 0xff00) << 8) | ((x & 0xff0000) >> 8) | ((x & 0xff000000) >> 24); } static ulong SwapEndianness(ulong x) { return ((ulong)SwapEndianness((uint)x) << 32) | SwapEndianness((uint)(x >> 32)); } } -} \ No newline at end of file +} diff --git a/NtpCommand/Program.cs b/NtpCommand/Program.cs index 564f301..27df1b1 100644 --- a/NtpCommand/Program.cs +++ b/NtpCommand/Program.cs @@ -1,4 +1,4 @@ -// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com +// Part of GuerrillaNtp: https://guerrillantp.machinezoo.com using GuerrillaNtp; using System; using System.Net;