Module Name:    src
Committed By:   kiyohara
Date:           Thu Jan  3 14:03:39 UTC 2013

Modified Files:
        src/sys/arch/bebox/stand/boot: siop.c

Log Message:
Fix format of specify for scsi disk.  s,/dev/disk/scsi/0/0/0,/dev/disk/scsi/000,


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/bebox/stand/boot/siop.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/bebox/stand/boot/siop.c
diff -u src/sys/arch/bebox/stand/boot/siop.c:1.2 src/sys/arch/bebox/stand/boot/siop.c:1.3
--- src/sys/arch/bebox/stand/boot/siop.c:1.2	Tue Feb 14 11:44:47 2012
+++ src/sys/arch/bebox/stand/boot/siop.c	Thu Jan  3 14:03:39 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: siop.c,v 1.2 2012/02/14 11:44:47 kiyohara Exp $	*/
+/*	$NetBSD: siop.c,v 1.3 2013/01/03 14:03:39 kiyohara Exp $	*/
 /*
  * Copyright (c) 2010 KIYOHARA Takashi
  * All rights reserved.
@@ -1039,7 +1039,7 @@ scsi_probe(struct siop_adapter *adp)
 
 			memset(product, 0, sizeof(product));
 			strncpy(product, inqbuf->product, sizeof(product) - 1);
-			printf("/dev/disk/scsi/0/%d/%d: <%s>\n", t, l, product);
+			printf("/dev/disk/scsi/0%d%d: <%s>\n", t, l, product);
 			found++;
 		}
 	}

Reply via email to