LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 07-08-2013, 11:25 AM   #1
jostber
Member
 
Registered: Jul 2001
Location: Skien, Norway
Distribution: Slackware Current 64-bit
Posts: 543

Rep: Reputation: 178Reputation: 178
Small typo


I found a small typo in a rc file when setting up postfix the other day. Is there somewhere to report this?
 
Old 07-08-2013, 12:59 PM   #2
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,077

Rep: Reputation: Disabled
Here.
 
Old 07-08-2013, 01:08 PM   #3
jostber
Member
 
Registered: Jul 2001
Location: Skien, Norway
Distribution: Slackware Current 64-bit
Posts: 543

Original Poster
Rep: Reputation: 178Reputation: 178
From /etc/rc.d/rc.saslauthd:


Code:
#!/bin/sh# rc.saslauthd:  start/stop/restart saslauthd
#
# saslauthd is a daemon process that handles plaintext authentication
# requests on behalf of the SASL library.  The CMU Cyrus SASL library
# is a general purpose authentication library for sever and client
# applications.  It is mostly used to authenticate to mail servers.
#
# saslauthd should be started from the system boot scripts when going
# to multi-user mode. When running against a protected authentication
Should be "authentication library for server and client".
 
Old 07-08-2013, 01:42 PM   #4
perbh
Member
 
Registered: May 2008
Location: Republic of Texas
Posts: 393

Rep: Reputation: 81
oh man ... who cares about comments?
 
Old 07-08-2013, 02:30 PM   #5
Woodsman
Senior Member
 
Registered: Oct 2005
Distribution: Slackware 14.1
Posts: 3,482

Rep: Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546Reputation: 546
Quote:
oh man ... who cares about comments?
The OP is trying to help. Your comment does not help.

jostber, you can post such comments here at LQ. Pat follows the forum. You also can send him an email with such a change.
 
1 members found this post helpful.
Old 07-08-2013, 03:00 PM   #6
perbh
Member
 
Registered: May 2008
Location: Republic of Texas
Posts: 393

Rep: Reputation: 81
I stand corrected - sorry.
 
Old 07-08-2013, 03:09 PM   #7
zhjim
Senior Member
 
Registered: Oct 2004
Distribution: Debian Squeeze x86_64
Posts: 1,748
Blog Entries: 11

Rep: Reputation: 233Reputation: 233Reputation: 233
jostber does.

And thats good. Also this beeing just a typo no one can misread there are ones than if interpreted in a not so wise background could lead to false assumption and wasted hours of lifetime. If you got spare I take.
 
Old 07-08-2013, 03:12 PM   #8
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,548

Rep: Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557
Fixed in the source tree, so it'll be picked up by the next update to cyrus-sasl (whenever that happens).
 
Old 07-08-2013, 04:58 PM   #9
onebuck
Moderator
 
Registered: Jan 2005
Location: Central Florida 20 minutes from Disney World
Distribution: SlackwareŽ
Posts: 13,927
Blog Entries: 45

Rep: Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159Reputation: 3159
Member Response

Hi,
Quote:
Originally Posted by perbh View Post
oh man ... who cares about comments?
People that care about following what the author intended. Sure a typo is minor but one should be aware and voice when an error exists or found.
 
Old 07-09-2013, 09:30 PM   #10
perbh
Member
 
Registered: May 2008
Location: Republic of Texas
Posts: 393

Rep: Reputation: 81
Seeing everybody thinks mis-spellings might be a real-bad-thing, I guess the following should also be considered for updates:
Quote:
rc.autofs:33:# load customized configuation settings
rc.cups:27:# NetBSD 1.5+ rcorder script lines. The format of the following two
rc.inet1.conf:80:#IFNAME[4]="wlan0" # Use a different interface name nstead of
rc.inet1.conf:85:#DHCP_KEEPRESOLV[4]="yes" # If you dont want /etc/resolv.conf overwritten
rc.wireless:50:# need this additional time to initalize.
I don't really dare to think what a similar exercise into the kernel source would bring - but for anyone sufficiently interested - the above was done by:
Code:
#!/bin/sh
cd /etc/rc.d
for f in *; do
   test -d $f && continue	# skip directories
   test ${f:0:11} = rc.modules- && continue	# only use default
   grep -n '^#' $f | grep -v '#$' | while read t; do
      echo "$f:$t"
   done
done
The result was piped through a spell-checker ('aspell' in this case) - and after a few k-keypushes of 'i' (ignore) - the output was as above.
getting somewhat tired-eye at the end - I might well have missed some ...

I would appreciate if the above could be given the same serious attitude as given to the OP ...

ps.
I do apologize if I have stepped on anybody's toes - but sometimes there is a li'l ole devil sittin' on one's shoulder ...

Last edited by perbh; 07-09-2013 at 09:34 PM.
 
Old 07-09-2013, 09:46 PM   #11
mlslk31
Member
 
Registered: Mar 2013
Location: Florida, USA
Distribution: Slackware, FreeBSD
Posts: 210

Rep: Reputation: 77
Quote:
rc.cups:27:# NetBSD 1.5+ rcorder script lines. The format of the following two
Not sure about this one. In FreeBSD, "rcorder" is a program that provides the dependency order for the rc files. I've used it like `cd /etc/rc.d; rcorder ./*`, and it lists the order in which the scripts can be run. It's a nice aid when adding new rc files.
 
Old 07-09-2013, 09:47 PM   #12
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,548

Rep: Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557Reputation: 8557
Quote:
Originally Posted by perbh View Post
Seeing everybody thinks mis-spellings might be a real-bad-thing, I guess the following should also be considered for updates:

...

I would appreciate if the above could be given the same serious attitude as given to the OP ...
I wouldn't say they fall into the same category as functional bugs, but certainly they should be fixed (or at least set up for an eventual fix... I'll rarely rebuild just to fix a typo).

BTW, rc.autofs and rc.cups came from upstream that way, so if it's really bothering you I'd suggest reporting it to them. Fixing typos is one thing, but patching them is another.
 
1 members found this post helpful.
Old 07-09-2013, 10:26 PM   #13
perbh
Member
 
Registered: May 2008
Location: Republic of Texas
Posts: 393

Rep: Reputation: 81
*chuckles* it's certainly not bothering _me_ - as far as I'm concerned - a comment is a comment - and unless the comment kinda 'spells out' what you've got to do (eg. commented scripts), I couldn't care less.
As for 'rcorder' I sincerely apologize - I believed that to be 'reorder' (possibly 'recorder') - my bad!

As I said - there was this li'l mischievous fella sittin' on my shoulder ...
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
fluxbox.SlackBuild in -current typo? wadsworth Slackware 9 11-13-2008 01:59 PM
typo in move command - files gone now? Eusaphious Linux - General 6 07-23-2008 04:50 AM
Don't make a typo powadha General 6 09-21-2006 02:47 AM
Typo in the LQ rules Nylex LQ Suggestions & Feedback 1 07-18-2006 07:33 AM
is it an error or typo? blackcat Linux From Scratch 1 09-02-2002 06:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:26 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration