Deleted Added
full compact
22c22
< * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
---
> * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
26,27d25
< #pragma ident "%Z%%M% %I% %E% SMI"
<
348,363d345
<
< /*
< * Check if the dataset name is private for internal usage.
< * '$' is reserved for internal dataset names. e.g. "$MOS"
< *
< * Return 1 if the given name is used internally.
< * Return 0 if it is not.
< */
< int
< dataset_name_hidden(const char *name)
< {
< if (strchr(name, '$') != NULL)
< return (1);
<
< return (0);
< }