Advertisement
Guest User

Untitled

a guest
Sep 29th, 2011
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. sudo perl /usr/local/bin/cgiwrap-fcgi.pl&
  2. [9] 10970
  3. [8] Done sudo perl /usr/local/bin/cgiwrap-fcgi.pl
  4. tallis@tallis-ubuntu:~$ Name "CORE::GLOBAL::exit" used only once: possible typo at
  5. /usr/local/bin/cgiwrap-fcgi.pl line 17 (#1)
  6. (W once) Typographical errors often show up as unique variable names.
  7. If you had a good reason for having a unique name, then just mention it
  8. again somehow to suppress the message. The our declaration is
  9. provided for this purpose.
  10.  
  11. NOTE: This warning detects symbols that have been used only once so $c, @c,
  12. %c, *c, &c, sub c{}, c(), and c (the filehandle or format) are considered
  13. the same; if a program uses $c only once but also uses any of the others it
  14. will not trigger this warning.
  15.  
  16. Use of uninitialized value within @_ in concatenation (.) or string at
  17. /usr/local/bin/cgiwrap-fcgi.pl line 17 (#2)
  18. (W uninitialized) An undefined value was used as if it were already
  19. defined. It was interpreted as a "" or a 0, but maybe it was a mistake.
  20. To suppress this warning assign a defined value to your variables.
  21.  
  22. To help you figure out what was undefined, perl will try to tell you the
  23. name of the variable (if any) that was undefined. In some cases it cannot
  24. do this, so it also tells you what operation you used the undefined value
  25. in. Note, however, that perl optimizes your program and the operation
  26. displayed in the warning may not necessarily appear literally in your
  27. program. For example, "that $foo" is usually optimized into "that "
  28. . $foo, and the warning will refer to the concatenation (.) operator,
  29. even though there is no . in your program.
  30.  
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement