Deleted Added
full compact
libzfs_dataset.c (268469) libzfs_dataset.c (271764)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 1443 unchanged lines hidden (view full) ---

1452 case EBUSY:
1453 (void) zfs_standard_error(hdl, EBUSY, errbuf);
1454 break;
1455
1456 case EROFS:
1457 (void) zfs_error(hdl, EZFS_DSREADONLY, errbuf);
1458 break;
1459
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE

--- 1443 unchanged lines hidden (view full) ---

1452 case EBUSY:
1453 (void) zfs_standard_error(hdl, EBUSY, errbuf);
1454 break;
1455
1456 case EROFS:
1457 (void) zfs_error(hdl, EZFS_DSREADONLY, errbuf);
1458 break;
1459
1460 case E2BIG:
1461 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1462 "property value too long"));
1463 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
1464 break;
1465
1460 case ENOTSUP:
1461 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1462 "pool and or dataset must be upgraded to set this "
1463 "property or value"));
1464 (void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
1465 break;
1466
1467 case ERANGE:

--- 3274 unchanged lines hidden ---
1466 case ENOTSUP:
1467 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1468 "pool and or dataset must be upgraded to set this "
1469 "property or value"));
1470 (void) zfs_error(hdl, EZFS_BADVERSION, errbuf);
1471 break;
1472
1473 case ERANGE:

--- 3274 unchanged lines hidden ---