summaryrefslogtreecommitdiff
path: root/libsm/fopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'libsm/fopen.c')
-rw-r--r--libsm/fopen.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libsm/fopen.c b/libsm/fopen.c
index 33ddc6015b9bd..7dd1751c98b31 100644
--- a/libsm/fopen.c
+++ b/libsm/fopen.c
@@ -89,7 +89,7 @@ reopenalrm(sig)
** Parameters:
** type -- type of file to open
** timeout -- time to complete the open
-** info -- info describing what is to be opened (type dependant)
+** info -- info describing what is to be opened (type dependent)
** flags -- user selected flags
** rpool -- pointer to rpool to be used for this open
**
@@ -159,7 +159,7 @@ sm_io_open(type, timeout, info, flags, rpool)
#if SM_RPOOL
if (rpool != NULL)
sm_rpool_attach_x(rpool, sm_io_fclose, fp);
-#endif /* SM_RPOOL */
+#endif
return fp;
}
@@ -205,7 +205,7 @@ sm_io_dup(fp)
** Parameters:
** type -- file type to be opened
** timeout -- time to complete the reopen
-** info -- infomation about what is to be "re-opened" (type dep.)
+** info -- information about what is to be "re-opened" (type dep.)
** flags -- user flags to map to internal flags
** rpool -- rpool file to be associated with
** fp -- the file pointer to reuse
@@ -311,7 +311,7 @@ sm_io_reopen(type, timeout, info, flags, rpool, fp)
#if SM_RPOOL
if (rpool != NULL)
sm_rpool_attach_x(rpool, sm_io_close, fp2);
-#endif /* SM_RPOOL */
+#endif
return fp2;
}