From owner-freebsd-current@FreeBSD.ORG Fri Jul 19 18:17:32 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 59518310 for ; Fri, 19 Jul 2013 18:17:32 +0000 (UTC) (envelope-from sfourman@gmail.com) Received: from mail-ve0-x22f.google.com (mail-ve0-x22f.google.com [IPv6:2607:f8b0:400c:c01::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 1DC47A44 for ; Fri, 19 Jul 2013 18:17:32 +0000 (UTC) Received: by mail-ve0-f175.google.com with SMTP id da11so3544296veb.6 for ; Fri, 19 Jul 2013 11:17:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=/2fk7eAeOExWXeyYxr0BYLfuFMjObl0XezvoIrZXwxI=; b=j1b88KaAJKC5Av9bk9N/NEp5y9vj31yUkavKh93pCxLyOuUyq2l3X8PapxxqVYV//z grpm2+/GifJvydT5zLIiMi2L3F1zzNjEhRhuWYp4XiELlWZaHXppe/HlLin02OsJotOi AcAbZU+ky1vrfw472E/NqOVc+gk6SlMpAIFpBm3VxjFmD8s7nnZbvPYCUJVVQu+CzpNZ PbTBObrrEAhfc+udeoVDWq/zy1BLJPfzOelsAIRxyz8/JAamOjve3uph604nsht9inXM KTfahI+6L5HuZaNIMLTm08QqOvA1TAOKsXaYx8b0ecm52e8oVtvPj14yrZLqE/H7CBla Mrmg== MIME-Version: 1.0 X-Received: by 10.52.32.133 with SMTP id j5mr5097724vdi.103.1374257850331; Fri, 19 Jul 2013 11:17:30 -0700 (PDT) Received: by 10.221.8.135 with HTTP; Fri, 19 Jul 2013 11:17:30 -0700 (PDT) In-Reply-To: References: Date: Fri, 19 Jul 2013 14:17:30 -0400 Message-ID: Subject: Re: buildworld failed on HEAD From: "Sam Fourman Jr." To: Ryan Stone Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: FreeBSD Current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jul 2013 18:17:32 -0000 On Fri, Jul 19, 2013 at 1:53 PM, Ryan Stone wrote: > On Fri, Jul 19, 2013 at 1:35 PM, Sam Fourman Jr. wrote: > >> /usr/src/usr.bin/calendar/parsedata.c:989:17: error: null character >> ignored >> [-Werror,-Wnull-character] >> i = strtol (s, >> > > Try looking at this file in vi. It sounds like a '\0' has somehow been > inserted into this file and corrupted it. How did you get your source tree? > thats EXACTLY whats happening here... 988 if (s[0] == '+' || s[0] == '-') { 989 i = strtol (s,^@&es, 10); 990 if (*es != '\0') /* trailing junk */ 991 errx (1, "Invalid specifier format: %s\n", s); 992 return (i); 993 } 994 I used the new svnlite tool to get the src... so I did this: rm /usr/src/usr.bin/calendar/parsedata.c svnlite up and it restored the file but it still has the ^@ so im just going to manually remove it... im not sure whats going on here... Sam -- Sam Fourman Jr.