Module Name: src
Committed By: wiz
Date: Sun May 26 21:26:17 UTC 2013
Modified Files:
src/sbin/gpt: add.c
Log Message:
Instead of 'no space', say 'not enough space' in error message.
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sbin/gpt/add.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sbin/gpt/add.c
diff -u src/sbin/gpt/add.c:1.13 src/sbin/gpt/add.c:1.14
--- src/sbin/gpt/add.c:1.13 Sat Apr 13 18:32:01 2013
+++ src/sbin/gpt/add.c Sun May 26 21:26:17 2013
@@ -29,7 +29,7 @@
__FBSDID("$FreeBSD: src/sbin/gpt/add.c,v 1.14 2006/06/22 22:05:28 marcel Exp $");
#endif
#ifdef __RCSID
-__RCSID("$NetBSD: add.c,v 1.13 2013/04/13 18:32:01 jakllsch Exp $");
+__RCSID("$NetBSD: add.c,v 1.14 2013/05/26 21:26:17 wiz Exp $");
#endif
#include <sys/types.h>
@@ -130,7 +130,7 @@ add(int fd)
map = map_alloc(block, size);
if (map == NULL) {
- warnx("%s: error: no space available on device", device_name);
+ warnx("%s: error: not enough space available on device", device_name);
return;
}