src/rc/checkpath.c: fix typo "synbolic" -> "symbolic".

This commit is contained in:
Michael Orlitzky 2020-11-25 07:11:55 -05:00 committed by William Hubbs
parent 47819f004c
commit ac7ca6d901

View File

@ -117,7 +117,7 @@ static int get_dirfd(char *path, bool symlinks) {
strerror(errno)); strerror(errno));
if (S_ISLNK(st.st_mode) ) { if (S_ISLNK(st.st_mode) ) {
if (st.st_uid != 0) if (st.st_uid != 0)
eerrorx("%s: %s: synbolic link %s not owned by root", eerrorx("%s: %s: symbolic link %s not owned by root",
applet, path, str); applet, path, str);
linksize = st.st_size+1; linksize = st.st_size+1;
if (linkpath) if (linkpath)