pkgsrc/net/userppp/patches/patch-al
abs 8a5cc9768e Update userppp to 001107nb1
Fix compilation under gcc3: avoid trigraphs, comparison always
	true/false, and pass -fno-strict-aliasing
2003-06-08 10:36:17 +00:00

13 lines
348 B
Text

$NetBSD: patch-al,v 1.1 2003/06/08 10:36:18 abs Exp $
--- libhack/alias_nbt.c.orig Sun Jun 8 11:08:07 2003
+++ libhack/alias_nbt.c
@@ -102,7 +102,7 @@ static void PrintRcode( u_char rcode )
case CFT_ERR:
printf("\nName in conflict error.\n");
default:
- printf("\n???=%0x\n", rcode );
+ printf("\n??? = %0x\n", rcode );
}
}